Skip to content

Instantly share code, notes, and snippets.

@jessecarrigan
jessecarrigan / gist:9340725
Created March 4, 2014 05:23
Fabric settings for Mezzanine deployment, sans passwords (and with very bad keys)
FABRIC = {
"SSH_USER": "x", # SSH username
"SSH_PASS": "x", # SSH password (consider key-based authentication)
"SSH_KEY_PATH": "", # Local path to SSH key file, for key-based auth
"HOSTS": ['192.168.33.10'], # List of hosts to deploy to
"VIRTUALENV_HOME": "/home/vagrant", # Absolute remote path for virtualenvs
"PROJECT_NAME": "testproject", # Unique identifier for project
"REQUIREMENTS_PATH": "requirements.txt", # Path to pip requirements, relative to project
"GUNICORN_PORT": 8000, # Port gunicorn will listen on
"LOCALE": "en_US.UTF-8", # Should end with ".UTF-8"