Created
October 14, 2022 17:15
-
-
Save Jamiewarb/58196f5f58f04ec2ac91a7dc7bcfb19c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id: 34241 | |
name: entelechy-api | |
environments: | |
development: | |
domain: dev-api.entelechy.academy | |
memory: 1024 | |
cli-memory: 512 | |
gateway-version: 2 | |
runtime: docker | |
database: entelechy-dev01_laravel | |
build: | |
- 'COMPOSER_MIRROR_PATH_REPOS=1 composer install --no-dev' | |
- 'php artisan route:cache' | |
- 'php artisan view:cache' | |
- 'php artisan config:cache' | |
- 'php artisan event:cache' | |
deploy: | |
- 'php artisan migrate --force' | |
- 'php artisan lighthouse:cache' | |
production: | |
domain: api.entelechy.academy | |
memory: 1024 | |
cli-memory: 512 | |
gateway-version: 2 | |
runtime: docker | |
database: entelechy-prod01_laravel | |
build: | |
- 'COMPOSER_MIRROR_PATH_REPOS=1 composer install --no-dev' | |
- 'php artisan route:cache' | |
- 'php artisan view:cache' | |
- 'php artisan config:cache' | |
- 'php artisan event:cache' | |
deploy: | |
- 'php artisan migrate --force' | |
- 'php artisan lighthouse:cache' | |
staging: | |
domain: staging-api.entelechy.academy | |
memory: 1024 | |
cli-memory: 512 | |
gateway-version: 2 | |
runtime: docker | |
database: entelechy-stag01_laravel | |
build: | |
- 'COMPOSER_MIRROR_PATH_REPOS=1 composer install --no-dev' | |
- 'php artisan route:cache' | |
- 'php artisan view:cache' | |
- 'php artisan config:cache' | |
- 'php artisan event:cache' | |
deploy: | |
- 'php artisan migrate --force' | |
- 'php artisan lighthouse:cache' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment