aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/config_spec.ini
Commit message (Collapse)AuthorAgeFilesLines
* Added configuration variable to toggle registrations, if disabled the ↵Rasmus Larsson2011-07-091-1/+4
| | | | registration page redirects to index and no link to register is shown
* Preparing celery unit tests for new setup.Christopher Allan Webber2011-06-181-0/+5
| | | | | Instead of the previous passing in of dictionaries, we're actually checking some example config files.
* Move entire app structure over to using the new config system.Christopher Allan Webber2011-06-181-2/+4
| | | | | | | | | | | | | | | | | | | This is a huge change! This means several things. - From the python point of view, launching the application is a heck of a lot cleaner. You just need to pass in the config file path to MediaGoblinApp's __init__() and whether or not this funtion should setup celery and you're good. - There are now two separate config files, separating the server setup from the application setup. - server.ini: the paste deploy config file, which configures the applications and server setup but *NOT* the mediagoblin application itself. - mediagoblin.ini: where you configure mediagoblin (and possibly celery) - Launching the application is now different. Instead of: ./bin/paster serve mediagoblin.ini --reload We launch like: ./bin/paster serve server.ini --reload
* Let's specifically import string_list()s in the config_spec.Christopher Allan Webber2011-06-181-2/+2
|
* Basic config "requirements" file.Christopher Allan Webber2011-06-151-0/+69
Not used yet, but this will be used by ConfigObj to transform values, set defaults, etc.