1
0
mirror of https://github.com/IEEE-SB-Passau/pelican-deployment-system.git synced 2017-09-06 16:35:38 +02:00
Files
pelican-deployment-system/deploy_config.py

19 lines
515 B
Python
Raw Normal View History

2016-06-11 00:51:12 +02:00
import os
2016-06-10 21:59:52 +02:00
if __name__ == "__main__":
raise SystemExit("Not meant to be run directly!")
2016-06-11 00:51:12 +02:00
# make sure git does not block giving pw prompts
os.environ["GIT_TERMINAL_PROMPT"] = "0"
2016-06-10 21:59:52 +02:00
RUNNERS = {
"website_master": {
"working_directory": "/tmp/test",
"clone_url": "https://github.com/catdog2/sandbox.git",
"git_branch": "master",
"target_directory": "/tmp/wwwout",
"pelican_command": 'echo $PELICAN_SITEURL',
"pelican_env": {"PELICAN_SITEURL": "//apu:800"}
}
}