-
Notifications
You must be signed in to change notification settings - Fork 1
/
vapor.yml
30 lines (30 loc) · 835 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
28
29
30
id: 5898
name: site
environments:
production:
domain: eam.watch
database: EamWatch-DB
storage: eamwatch-production
memory: 1024
cli-memory: 512
warm: 1
runtime: php-8.2:al2
build:
- 'composer install --no-dev'
- 'php artisan event:cache'
- 'npm ci && npm run prod && rm -rf node_modules'
deploy:
- 'php artisan migrate --force'
staging:
database: EamWatch-DB
storage: eamwatch-staging
domain: dev.eam.watch
memory: 1024
cli-memory: 512
runtime: php-8.2:al2
build:
- 'composer install'
- 'php artisan event:cache'
- 'npm ci && npm run prod && rm -rf node_modules'
deploy:
- 'php artisan migrate'