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

add early code

This commit is contained in:
2016-06-10 21:59:52 +02:00
parent e9e625dd4a
commit 3d5d70cfd0
4 changed files with 128 additions and 0 deletions

13
deploy_config.py Normal file
View File

@@ -0,0 +1,13 @@
if __name__ == "__main__":
raise SystemExit("Not meant to be run directly!")
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"}
}
}