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

30 lines
1 KiB
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"
2023-12-06 21:44:18 +01:00
- "/.secrets"
2022-12-28 13:45:03 +01:00
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' }
2023-01-22 01:54:33 +01:00
- exec: { cmd: 'php8.1 ./bin/console cache:warmup', desc: 'warmup2' }
2023-09-23 00:18:41 +02:00
- exec: { cmd: './bin/messenger -a restart', desc: 'messenger' }