# -*- coding: utf-8; mode: python -*- """ Fabric environment tweaks. You must save this file as 'fabenv.py' within the current directory, then edit the settings however you need/like to manage a particular target server. """ from __future__ import unicode_literals from fabric.api import env # Whether or not the target server should be considered "live". This may # control various things, such as whether certain automated tasks are enabled. env.server_is_live = False # Whether or not Product Open Data (POD) files should be downloaded. env.rattail_download_pod = False # Alternate download URL for POD source file. #env.setting_pod_download_url = 'https://rattailproject.org/downloads/POD/pod_pictures_gtin_2013.08.29_01.zip' # Password for 'rattail' PostgreSQL user; used to access the Rattail database. env.password_postgresql_rattail = 'password'