You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contributing/development-environment.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,19 @@ As well need to make the needed tables etc in the database.
100
100
sail artisan migrate:fresh --force
101
101
```
102
102
103
-
#### 7. Installing the application
103
+
#### 7. Installing NPM assets
104
+
105
+
We will need to install the needed NPM assets
106
+
107
+
```bash
108
+
./vendor/bin/sail npm install && ./vendor/bin/sail npm run build
109
+
110
+
# or if you have a Sail alias setup...
111
+
sail npm install && sail npm run build
112
+
113
+
```
114
+
115
+
#### 8. Installing the application
104
116
105
117
Once the environment is setup you can install a fresh version of the application by running the following command. Keep in mind this WILL refresh the entire database.
0 commit comments