Created
March 15, 2012 22:27
-
-
Save CMcDonald82/2047374 to your computer and use it in GitHub Desktop.
Config file for Gondor deploy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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