Commit 1ac732ab by John Jarvis

adding git.revision for cms

parent 8ca156bd
......@@ -13,6 +13,7 @@ from logsettings import get_logger_config
import os
from path import path
from dealer.git import git
# SERVICE_VARIANT specifies name of the variant used, which decides what JSON
# configuration files are read during startup.
......@@ -87,7 +88,7 @@ with open(CONFIG_ROOT / CONFIG_PREFIX + "env.json") as env_file:
# STATIC_ROOT specifies the directory where static files are
# collected
STATIC_ROOT = path(ENV_TOKENS.get('STATIC_ROOT', STATIC_ROOT))
STATIC_ROOT = path(ENV_TOKENS.get('STATIC_ROOT', STATIC_ROOT)) / git.revision
EMAIL_BACKEND = ENV_TOKENS.get('EMAIL_BACKEND', EMAIL_BACKEND)
EMAIL_FILE_PATH = ENV_TOKENS.get('EMAIL_FILE_PATH', None)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment