test_paste.ini 382 B

12345678910111213141516171819
  1. [DEFAULT]
  2. debug = true
  3. [app:main]
  4. use = egg:mediagoblin#app
  5. config = %(here)s/mediagoblin.ini
  6. /mgoblin_media = %(here)s/user_dev/media/public
  7. /test_static = %(here)s/mediagoblin/static
  8. /theme_static = %(here)s/user_dev/theme_static
  9. /plugin_static = %(here)s/user_dev/plugin_static
  10. [celery]
  11. CELERY_ALWAYS_EAGER = true
  12. [server:main]
  13. use = egg:gunicorn
  14. host = 127.0.0.1
  15. port = 6543