mirror of
https://github.com/ceph/ceph
synced 2025-03-08 09:19:03 +00:00
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.
6 lines
126 B
Python
6 lines
126 B
Python
import os
|
|
from pecan.deploy import deploy
|
|
|
|
cur_path = os.path.dirname(__file__)
|
|
application = deploy(cur_path + '/config.py')
|