You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
64 lines
1.7 KiB
6 years ago
|
{
|
||
|
// HTTP server options
|
||
|
//"http-enabled": true,
|
||
|
//"http-host": "0.0.0.0",
|
||
|
//"http-port": 8001,
|
||
|
|
||
|
// HTTPS server options
|
||
|
//"https-enabled": true,
|
||
|
//"https-host": "0.0.0.0",
|
||
|
//"https-port": 8002,
|
||
|
|
||
|
// Web socket server options (used by web UI for real time updates)
|
||
|
//"wss-enabled": false,
|
||
|
//"wss-host": "0.0.0.0",
|
||
|
//"wss-port": 8003,
|
||
|
|
||
|
// Web user interface options
|
||
|
//"web-ui-enabled": false,
|
||
|
//"web-ui-username": null,
|
||
|
//"web-ui-password": null,
|
||
|
//"web-ui-whitelist": ["127.0.0.1"],
|
||
|
|
||
|
// TLS/SSL cert (necessary for HTTPS and web socket server to work)
|
||
|
//"ssl-key": null, // If specified, holds the private key
|
||
|
"ssl-cert": "/etc/git-auto-deploy/cert.pem", // Holds the public key or both the private and public keys
|
||
|
|
||
|
// File to store a copy of the console output
|
||
|
"log-file": "/var/log/git-auto-deploy.log",
|
||
|
|
||
|
// Record all log levels by default
|
||
|
//"log-level": "NOTSET",
|
||
|
|
||
|
// Deploy commands that should be executed for all projects
|
||
|
//"global_deploy": [
|
||
|
// "echo Deploy started!",
|
||
|
// "echo Deploy completed!"
|
||
|
//],
|
||
|
|
||
|
// Project configs
|
||
|
"repositories": [
|
||
|
{
|
||
|
"url": "https://github.com/olipo186/Git-Auto-Deploy.git",
|
||
|
"branch": "master",
|
||
|
"remote": "origin",
|
||
|
"path": "/var/lib/git-auto-deploy/Git-Auto-Deploy",
|
||
|
"deploy": "echo deploying"
|
||
|
},
|
||
|
{
|
||
|
"url": "https://github.com/github/gitignore",
|
||
|
"path": "/var/lib/git-auto-deploy/gitignore"
|
||
|
}
|
||
|
// ,{
|
||
|
// "url": "https://api.github.com/repos/olipo186/Git-Auto-Deploy",
|
||
|
// "deploy": "echo deploying after pull request",
|
||
|
// "filters": [
|
||
|
// {
|
||
|
// "type": "pull-request-filter",
|
||
|
// "action": "closed",
|
||
|
// "ref": "testing-branch"
|
||
|
// }
|
||
|
// ]
|
||
|
// }
|
||
|
]
|
||
|
}
|