Skip to content

Instantly share code, notes, and snippets.

@R3quest
Last active January 10, 2023 12:05
Show Gist options
  • Save R3quest/459133f389c04ea8376645cbd64fad87 to your computer and use it in GitHub Desktop.
Save R3quest/459133f389c04ea8376645cbd64fad87 to your computer and use it in GitHub Desktop.
vapor.yml configuration file - database
id: 38773
name: vapor-app
environments:
production:
memory: 1024
cli-memory: 512
runtime: php-8.1:al2
database: vapor-app-database # database name - created in Vapor UI
build: #runs before deployment
- 'COMPOSER_MIRROR_PATH_REPOS=1 composer install --no-dev'
- 'php artisan event:cache'
- 'npm install && npm run build && rm -rf node_modules'
deploy: #runs after deployment
- 'php artisan migrate --force'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment