Skip to content

Commit c729226

Browse files
committed
Cleaned up the commands in the readme.
1 parent 3701978 commit c729226

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Using Inertia.js allows using your favorite MVC server-side framework (Grails ob
1414
## Installation
1515
If you don't have an application already:
1616
```shell
17-
$ grails create-app myapp
18-
$ cd myapp
17+
grails create-app myapp
18+
cd myapp
1919
```
2020

2121
Add the plugin dependency to the project:
@@ -113,7 +113,7 @@ src/main/resources/public/dist
113113
```
114114
And run:
115115
```shell
116-
myapp/ $ npm install
116+
npm install
117117
```
118118
119119
## Usage
@@ -150,17 +150,17 @@ const props = defineProps({
150150
```
151151
For development with [Hot Module Replacement](https://vitejs.dev/guide/features.html#hot-module-replacement) of the application run: (in separate terminals)
152152
```shell
153-
myapp/ $ npm run serve
153+
npm run serve
154154
```
155155
```shell
156-
myapp/ $ ./gradlew bootRun
156+
./gradlew bootRun
157157
```
158158
For production or test, first build production version of JavaScript app:
159159
```shell
160-
myapp/ $ npm run build
160+
npm run build
161161
```
162162
and then run whatever you want to do:
163163
```shell
164-
myapp/ $ ./gradlew integrationTest
165-
myapp/ $ ./gradlew bootJar
164+
./gradlew integrationTest
165+
./gradlew bootJar
166166
```

0 commit comments

Comments
 (0)