Files
shipping-portal/vapor.yml
2023-12-28 15:06:11 +08:00

55 lines
1.4 KiB
YAML

id: 52493
name: shipping-portal
environments:
production:
domain: production.portal.izyim.com
memory: 1024
cli-memory: 512
database: cief-rds-mysql
storage: shipping-portal-production
runtime: 'docker'
timeout: 180
build:
- 'composer update'
- 'npm install'
- 'npm run dev'
- 'gulp build'
deploy:
- 'php artisan migrate --force'
staging:
domain: staging.portal.izyim.com
memory: 1024
cli-memory: 512
database: cief-rds-mysql
storage: shipping-portal-staging
runtime: 'docker'
timeout: 180
build:
- 'composer update'
- 'npm install'
- 'npm run dev'
- 'gulp build'
deploy:
- 'php artisan migrate --force'
development:
domain: development.portal.izyim.com
memory: 1024
cli-memory: 512
# queue-memory: 1024
# queues:
# - hellokitty1 #cief todo: testing sqs
# - hellokitty2 #cief todo: testing sqs
# gateway-version: 2
database: cief-rds-mysql
storage: shipping-portal-development
runtime: 'docker'
timeout: 180
build:
- 'composer update'
- 'npm install'
- 'npm run dev'
- 'gulp build'
deploy:
- 'php artisan migrate --force'