ceph/server/app.wsgi
Babu Shanmugam 4cf2c7264e Server changes to deploy in a production env
1. Added the wsgi entry point app.wsgi
2. Updated client code to mandate the update-metadata to have url to publish and unpublish
3. Updated the README to describe a bit about the server operations as well.
2014-02-10 12:38:26 +05:30

6 lines
126 B
Python

import os
from pecan.deploy import deploy
cur_path = os.path.dirname(__file__)
application = deploy(cur_path + '/config.py')