suivi/.mage.yml.dist

27 lines
922 B
Plaintext
Raw Normal View History

2023-11-03 22:09:22 +01:00
magephp:
2024-03-29 12:54:30 +01:00
log_dir: /tmp
2024-03-29 13:00:50 +01:00
environments:
2023-11-03 22:09:22 +01:00
prod:
user: ssh_user
from: ./
to: /home/ssh_user/app
host_path: /home/ssh_user/app
rsync: '-avz --delete'
exclude:
- "/.git"
- "/.env.local"
2024-03-29 12:38:51 +01:00
- "/migrations/"
2023-11-03 22:09:22 +01:00
- "/public/uploads/"
- "/public/files/"
2024-03-29 12:38:51 +01:00
- "/var/"
2023-11-03 22:09:22 +01:00
- "/public/js/fos_js_routes.json"
- "/public/media"
2023-11-30 14:24:52 +01:00
- "/config/secrets"
2023-11-03 22:09:22 +01:00
hosts:
- ssh_host
on-deploy:
- exec: { cmd: 'make clean', desc: 'cache' }
2023-11-03 22:21:17 +01:00
- exec: { cmd: 'make doctrine-migration', desc: 'migration' }
- exec: { cmd: 'php ./bin/console cache:warmup', desc: 'warmup' }
- exec: { cmd: 'php ./bin/console cache:warmup', desc: 'warmup2' }