Skip to content

Commit 773a4b0

Browse files
committed
Suggest APP_URL for Vercel, and clean up whole instructions section a bit more
1 parent 9bbc9ce commit 773a4b0

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

README.md

+17-15
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ You may configure a custom routing style in `config/statamic/ssg.php`:
8484

8585
```php
8686
'pagination_route' => '{url}/{page_name}/{page_number}',
87-
```
87+
```
8888

8989

9090
## Post-generation callback
@@ -162,16 +162,14 @@ Deployments are triggered by committing to Git and pushing to GitHub.
162162

163163
- Create a site in your [Netlify](https://netlify.com) account
164164
- Link the site to your desired GitHub repository
165-
- Add build command `php please ssg:generate` (if you need to compile css/js, be sure to add that command too and execute it before generating the static site folder. e.g. `npm install && npm run build && php please ssg:generate`).
166-
- Set publish directory `storage/app/static`
167-
168-
After your site has an APP_URL...
169-
170-
- Set it as an environment variable. Add `APP_URL` `https://thats-numberwang-47392.netlify.com`
171-
172-
Finally, generate an `APP_KEY` to your .env file locally using `php artisan key:generate` and copy it's value, then...
173-
174-
- Set it as an environment variable. Add `APP_KEY` `[your app key value]`
165+
- Add build command `php please ssg:generate`
166+
- If you need to compile css/js, be sure to add that command too and execute it before generating the static site folder
167+
- ie. `npm install && npm run build && php please ssg:generate`
168+
- Set publish directory to `storage/app/static`
169+
- Add `APP_KEY` env variable, by running `php artisan key:generate` locally, and copying from your `.env`
170+
- ie. `APP_KEY` `your-app-key-value`
171+
- Add `APP_URL` environment variable after your site has a configured domain
172+
- ie. `APP_URL` `https://thats-numberwang-47392.netlify.com`
175173

176174
#### S3 Asset Containers
177175

@@ -204,15 +202,19 @@ Be sure to also update these in your `s3` disk configuration:
204202

205203
Deployments are triggered by committing to Git and pushing to GitHub.
206204

207-
- Create a new file called `./build.sh` and paste the code snippet below.
208-
- Run `chmod +x build.sh` on your terminal to make sure the file can be executed when deploying.
205+
- Create a new file called `./build.sh` and paste the code snippet below
206+
- Run `chmod +x build.sh` on your terminal to make sure the file can be executed when deploying
209207
- Import a new site in your [Vercel](https://vercel.com) account
210208
- Link the site to your desired GitHub repository
211209
- Add build command `./build.sh`
210+
- See [example build script](#example-build-script)
212211
- Set output directory to `storage/app/static`
213-
- Add environment variable in your project settings: `APP_KEY` `<copy & paste from dev>`
212+
- Add `APP_KEY` env variable, by running `php artisan key:generate` locally, and copying from your `.env`
213+
- ie. `APP_KEY` `your-app-key-value`
214+
- Add `APP_URL` environment variable after your site has a configured domain
215+
- ie. `APP_URL` `https://thats-numberwang-47392.vercel.app`
214216

215-
#### Code for build.sh
217+
#### Example Build Script
216218
Add the following snippet to `build.sh` file to install PHP, Composer, and run the `ssg:generate` command:
217219

218220
```

0 commit comments

Comments
 (0)