mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
55 lines
1.4 KiB
YAML
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'
|
|
|