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
./vendor/bin/sail npm install && ./vendor/bin/sail npm run build
109
110
110
111
# or if you have a Sail alias setup...
111
112
sail npm install && sail npm run build
112
113
113
-
```
114
+
```
114
115
115
-
#### 8. Installing the application
116
+
***
116
117
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.
118
+
### Reset your development environment
119
+
120
+
You can reset your development environment at any time by re-running a fresh migration:
118
121
119
122
```bash
120
-
./vendor/bin/sail artisan app:install --force
123
+
./vendor/bin/sail artisan migrate:fresh --force
121
124
122
125
# or if you have a Sail alias setup...
123
-
sail artisan app:install --force
126
+
sail artisan migrate:fresh --force
124
127
```
125
128
126
-
{% hint style="info" %}
127
-
You can reset your development environment at any time by running the `app:install` command.
128
-
{% endhint %}
129
-
130
129
***
131
130
132
131
### Processing Jobs in the Queue using a Worker
@@ -144,7 +143,7 @@ sail artisan queue:work
144
143
145
144
### Lint your code before opening a PR or committing changes
146
145
147
-
To keep PHP's code style consistant across multiple contributors a successful lint workflow is required to pass. Check your code quality locally by running the commnand below and fixing it's recommendations.
146
+
To keep PHP's code style consistent across multiple contributors a successful lint workflow is required to pass. Check your code quality locally by running the command below and fixing it's recommendations.
0 commit comments