File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -202,19 +202,19 @@ Be sure to also update these in your `s3` disk configuration:
202
202
203
203
Deployments are triggered by committing to Git and pushing to GitHub.
204
204
205
- - Create a new file called ` ./ build.sh` and paste the code snippet below
205
+ - Create a new file ` build.sh ` file in your project and paste from the [ example code snippet] ( #example-build-script ) below
206
206
- Run ` chmod +x build.sh ` on your terminal to make sure the file can be executed when deploying
207
207
- Import a new site in your [ Vercel] ( https://vercel.com ) account
208
208
- Link the site to your desired GitHub repository
209
209
- Set build command to ` ./build.sh `
210
- - See [ example build script] ( #example-build-script ) , which you'll also need to add to your project
211
210
- Set output directory to ` storage/app/static `
212
211
- Add ` APP_KEY ` env variable, by running ` php artisan key:generate ` locally, and copying from your ` .env `
213
212
- ie. ` APP_KEY ` ` your-app-key-value `
214
213
- Add ` APP_URL ` environment variable after your site has a configured domain
215
214
- ie. ` APP_URL ` ` https://thats-numberwang-47392.vercel.app `
216
215
217
216
#### Example Build Script
217
+
218
218
Add the following snippet to ` build.sh ` file to install PHP, Composer, and run the ` ssg:generate ` command:
219
219
220
220
```
You can’t perform that action at this time.
0 commit comments