deblan.io-murph/.mage.yml.dist

27 lines
845 B
Plaintext
Raw Normal View History

2022-12-28 13:45:03 +01:00
magephp:
environments:
prod:
2022-12-28 14:04:58 +01:00
user: ssh_user
2022-12-28 13:45:03 +01:00
from: ./
2022-12-28 14:04:58 +01:00
to: app_directory
host_path: app_directory
2022-12-28 13:45:03 +01:00
rsync: '-avz --delete'
exclude:
- "/.git"
- "*.swp"
- "*.swo"
- "/.env.local"
- "/data"
- "/migrations/*"
- "/public/uploads/"
- "/public/files/"
- "/var/cache/*"
- "/var/log/*"
- "/public/media"
hosts:
2022-12-28 14:04:58 +01:00
- ssh_host
2022-12-28 13:45:03 +01:00
on-deploy:
- exec: { cmd: 'make clean', desc: 'cache' }
2022-12-28 13:50:15 +01:00
- exec: { cmd: 'make doctrine-migration', desc: 'migration' }
2022-12-29 19:20:45 +01:00
- exec: { cmd: 'php8.1 ./bin/console cache:warmup', desc: 'warmup' }