adding deploy scripts for 2 new demo environments. bug 986571

This commit is contained in:
Chris Turra 2014-03-21 13:39:41 -07:00
Родитель db36c67b07
Коммит 2f8c33c89a
2 изменённых файлов: 30 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,15 @@
"""
Deployment for Bedrock on www-demo1.allizom.org.
Requires commander (https://github.com/oremj/commander) which is installed on
the systems that need it.
"""
import os
import sys
# these files are symlinked as 'update.py' in the project root.
ROOT = os.path.dirname(os.path.abspath(__file__))
sys.path.append(ROOT)
sys.path.append(os.path.join(ROOT, 'bedrock', 'bin', 'update'))
from deploy_dev_base import * # noqa

Просмотреть файл

@ -0,0 +1,15 @@
"""
Deployment for Bedrock on www-demo1.allizom.org.
Requires commander (https://github.com/oremj/commander) which is installed on
the systems that need it.
"""
import os
import sys
# these files are symlinked as 'update.py' in the project root.
ROOT = os.path.dirname(os.path.abspath(__file__))
sys.path.append(ROOT)
sys.path.append(os.path.join(ROOT, 'bedrock', 'bin', 'update'))
from deploy_dev_base import * # noqa