from fabric.api import env
env.hosts = ['<user>@<server1>']
env.web_group = '<web_user_group>'
env.folders = ['log', 'static/media']
env.base_export_path = "<local path used to export hg version>"
env.export_prefix = "theend"
env.remote_web_path = "<path of website root folder on the server>"
env.remote_src_path = "<path of website python src folder on the server>"
env.platform_web_module = "theend"
env.remote_virtualenv_path = "<path of the virtualenv on the server>"
env.remote_venv_export_path = "<path for temporary export path of virtualenv resources>"
env.remote_baseline_venv = "<path of virtualenv baseline used for virtualenv creation>"
env.web_rsync_filters = [
"+ core",
"P .htpasswd",
"P .htaccess",
"P robots.txt",
"P env/***",
"P log/***",
"P index/***",
"P static/media/***",
"P crossdomain.xml",
]
env.src_rsync_filters = [
"+ core",
"P theend/.htaccess",
"P theend/config.py",
"P theend/modwsgi.wsgi",
"P log/***",
"P index/***",
]
env.venv_rsync_filters = [
"+ core",
]
env.web_relaunch_cmd = "supervisorctl restart theend"
env.base_url = "/"
env.web_url = "http://<base_url>"
env.stream_url = "<base_streaming_url>" #optional
env.stream_src_prefix = ""
env.ffmpeg_path = "<path_to_ffmpeg>" #optional
env.db_engine = '<database driver>' #cf django documentation
env.db_name = '<database name>'
env.db_user = '<database user>'
env.db_password = ''
env.db_host = '<database host>'
env.db_port = <database port>
env.log_file = env.remote_web_path + '/log/log.txt'
env.google_analytics_code = ""
env.email_use_tls = True
env.email_host = ""
env.email_host_user = ""
env.email_host_user = ""
env.email_port = ""
env.forbidden_stream_url = "rtmp://media.iri.centrepompidou.fr/ddc_player/mp4:video/forbidden_stream.mp4?old_path="