Skip to content

Commit

Permalink
Add a basic wsgi app
Browse files Browse the repository at this point in the history
  • Loading branch information
lmacken committed Jan 10, 2012
1 parent 6c89653 commit b0fe4a6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apache/fedoratagger.wsgi
@@ -0,0 +1,8 @@
import os
os.environ['PYTHON_EGG_CACHE'] = '/var/cache/fedoratagger/.egg_cache'
import __main__
__main__.__requires__ = 'fedora_tagger'
import pkg_resources

from paste.deploy import loadapp
application = loadapp('config:/etc/fedoratagger/production.ini')

0 comments on commit b0fe4a6

Please sign in to comment.