# This file is exec'd from settings.py, so it has access to and can
# modify all the variables in settings.py.

# If this file is changed in development, the development server will
# have to be manually restarted because changes will not be noticed
# immediately.

DEBUG = True

# Make these unique, and don't share it with anybody.
SECRET_KEY = "4v!zhn*7f7-)^2x@s)k$cxg3w24$)0exh&mkbgz9xjyge%6+-1"
NEVERCACHE_KEY = "6=6^6-v9w6gi+z5%%kodi(cpu792804#*3^ws_0#kv+1sf73qj"

DATABASES = {
    "default": {
        # Ends with "postgresql_psycopg2", "mysql", "sqlite3" or "oracle".
        "ENGINE": "django.db.backends.sqlite3",
        # DB name or path to database file if using sqlite3.
        "NAME": "dev.db",
        # Not used with sqlite3.
        "USER": "",
        # Not used with sqlite3.
        "PASSWORD": "",
        # Set to empty string for localhost. Not used with sqlite3.
        "HOST": "",
        # Set to empty string for default. Not used with sqlite3.
        "PORT": "",
    }
}

###################
# DEPLOY SETTINGS #
###################

# Domains for test site
ALLOWED_HOSTS = ['localhost']

# These settings are used by the default fabfile.py provided.
# Check fabfile.py for defaults.

FABRIC = {
     "DEPLOY_TOOL": "git",  # Deploy with "git", "hg", or "rsync"
     "GIT_BRANCH": "danubeexplorer",
     "SSH_USER": "wortmann",  # VPS SSH username
     "HOSTS": ["se61.pik-potsdam.de"],  # The IP address of your VPS
     "DOMAINS": ["oasis.pik-potsdam.de"],  # will become ALLOWED_HOSTS in remote local_settings
     "REQUIREMENTS_PATH": "requirements.txt",  # Project's pip requirements
     "LOCALE": "en_GB.UTF-8",  # Should end with ".UTF-8"
     "DB_PASS": "7777777",  # Live database password
     "ADMIN_PASS": "St!7x7(DE)",  # Live admin user password
     "SECRET_KEY": SECRET_KEY,
     "NEVERCACHE_KEY": NEVERCACHE_KEY,
 }
