Example #1
0
# -*- coding: utf-8 -*-
"""
    deploy.py
    ~~~~~~~~~

    :copyright: (c) 2012 by Stephane Wirtel <*****@*****.**>
"""

from pythonfosdem import create_app
from pythonfosdem.config import DefaultConfig
from werkzeug.contrib.fixers import ProxyFix as ProxyFixMiddleware

__app__ = ['application']


# gunicorn -c conf/gunicorn.conf deploy:application
application = create_app(DefaultConfig)
application.wsgi_app = ProxyFixMiddleware(application.wsgi_app)

Example #2
0
 def setUp(self):
     self.app = create_app(config=TestConfig())
     with self.app.test_request_context():
         reset_db()