- Systemd service and timer for deployment orchestration - Webhook listener for Git-triggered deployments - Forgejo Actions workflow for CI/CD pipeline - Deployment scripts with rollback capability - Deploy token validation for security
12 lines
238 B
Desktop File
12 lines
238 B
Desktop File
[Unit]
|
|
Description=Deployment webhook
|
|
After=network.target
|
|
|
|
[Service]
|
|
ExecStart=/usr/local/bin/webhook -hooks /opt/deploy/hooks.json -port 9000
|
|
Restart=always
|
|
User=deploy
|
|
WorkingDirectory=/opt/deploy
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|