awips2/pythonPackages/Werkzeug-0.12.1/examples/manage-couchy.py
2017-04-21 18:33:55 -06:00

17 lines
438 B
Python
Executable file

#!/usr/bin/env python
from werkzeug import script
def make_app():
from couchy.application import Couchy
return Couchy('http://localhost:5984')
def make_shell():
from couchy import models, utils
application = make_app()
return locals()
action_runserver = script.make_runserver(make_app, use_reloader=True)
action_shell = script.make_shell(make_shell)
action_initdb = lambda: make_app().init_database()
script.run()