conf/config.py.tmpl
author ymh <ymh.work@gmail.com>
Fri, 17 Jan 2020 15:38:08 +0100
branch0.1_maintenance
changeset 33 40a2d27364b2
parent 18 bc8e23448f4d
permissions -rw-r--r--
remove use of wheel to install build

from fabric.api import env
from random import choice

env.hosts = ['iri@web.iri.centrepompidou.fr']

env.web_group = 'www-data'
env.folders = ['../run/log', 'static/media']

env.repos = {'web' : {'repo':"/Users/ymh/dev/workspace/egonomy", 'src_root': 'src', 'module':''}}
env.base_export_path = "~/tmp"
env.export_prefix = "egonomy"

env.remote_path = {
    'web':"/iridata/www/ldt/",
    'src':"/Users/ymh/dev/tmp/testfab/src",
    'virtualenv':"/iridata/virtualenv/ldt",
    'build_export':"/iridata/users/iri/tmp/build",
    'venv_export':"/iridata/users/iri/tmp/venv",
}

env.platform_web_module = "egonomy"
env.remote_baseline_venv = "/iridata/virtualenv/baseline2.7"

env.rsync_filters = {
    'src' : [
        "P .htpasswd",
        "P .htaccess",
        "P egonomy/config.py",
    ],
    'venv': [
        "+ core",
    ]
}
env.web_relaunch_cmd = "supervisorctl restart egonomy"


env.config = {
    'web': {
        'base_url': "/",
        'web_url': 'http://egonomy.iri-resesarch.org',
        'db_engine':'postgresql_psycopg2',
        'db_name':'platform',
        'db_user': 'iriuser',
        'db_password': '',
        'db_host': 'sql.iri.centrepompidou.fr',
        'db_port': 5432,
        'haystack_url' : 'http://localhost:9200',
        'haystack_index' : 'egonomy',
        'log_file' : env.remote_path['web'] + '/log/log.txt',
        'secret_key' : ''.join([choice('abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)') for i in range(50)]), 
    },
}

env.check_folder_access = True