mediagoblin/mediagoblin/tests/test_paste.ini
Christopher Allan Webber d61778a489 Switch from Paste for serving to Waitress
Incredibly, it looks like none of our documentation has to change taking
this route...!
2016-02-19 10:22:14 -08:00

19 lines
387 B
INI

[DEFAULT]
debug = true
[app:main]
use = egg:mediagoblin#app
config = %(here)s/mediagoblin.ini
/mgoblin_media = %(here)s/user_dev/media/public
/test_static = %(here)s/mediagoblin/static
/theme_static = %(here)s/user_dev/theme_static
/plugin_static = %(here)s/user_dev/plugin_static
[celery]
CELERY_ALWAYS_EAGER = true
[server:main]
use = egg:waitress#main
host = 127.0.0.1
port = 6543