Skip to content

Instantly share code, notes, and snippets.

@CMcDonald82
Created March 15, 2012 22:27
Show Gist options
  • Select an option

  • Save CMcDonald82/2047374 to your computer and use it in GitHub Desktop.

Select an option

Save CMcDonald82/2047374 to your computer and use it in GitHub Desktop.
Config file for Gondor deploy
[app]
; This path is relative to your project root (the directory .gondor is in)
requirements_file = requirements.txt
; The wsgi entry point of your application in two parts separated by a colon.
; wsgi:deploy where wsgi is the Python module which should be importable and
; application which represents the callable in the module.
wsgi_entry_point = wsgi:application
; Can be either nashvegas, south or none
migrations = south
; Whether or not to run collectstatic during deployment
staticfiles = on
; Path to map frontend servers to for your site media (includes both STATIC_URL
; and MEDIA_URL; you must ensure they are under the same path)
site_media_url = /site_media
; Gondor will use settings_module as DJANGO_SETTINGS_MODULE when it runs your
; code. Commented out by default (means it will not be set).
; settings_module = settings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment