import os
from settings import SITE_ROOT

# SECURITY WARNING: keep the secret key used in production secret!
# production environment should not have a hardcoded key so enable key below when in prod environment
#SECRET_KEY = os.environ['SECRET_KEY']
#with open('/home/key.txt') as f:
#    SECRET_KEY = f.read().strip()

# SECURITY WARNING: don't run with debug turned on in production!
# if running in production environment then set DEBUG = False and define ALLOWED_HOSTS
#DEBUG = False

# * accepts all, but need to define this later based on the domains used ex: ncahd.org or .ncahd.org
#ALLOWED_HOSTS = ['198.1.124.220']
#ALLOWED_HOSTS = [*]

# location for statically collected files to be stored, create directory static in the main
# application structure e.g., /project/static and then run python2.7 manage.py collectstatic from
# the command line
#STATIC_ROOT = os.path.join(BASE_DIR, "static")

