-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvapor.yml
28 lines (27 loc) · 844 Bytes
/
vapor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
id: 667
name: jeffcobbcom
environments:
production:
database: jeffcobbdb
domain: jeffcobb.com
memory: 1024
cli-memory: 512
build:
- 'composer install --no-dev --classmap-authoritative'
- 'php artisan event:cache'
- 'npm install && npm run prod && rm -rf node_modules'
deploy:
- 'php artisan migrate --force'
- 'php artisan db:seed'
staging:
database: jeffcobbdb
domain: staging.jeffcobb.com
memory: 1024
cli-memory: 512
build:
- 'composer install --classmap-authoritative'
- 'php artisan event:cache'
- 'npm install && npm run dev && rm -rf node_modules'
deploy:
- 'php artisan migrate --force'
- 'php artisan db:seed'