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

19 lines
426 B
Python
Executable file

#!/usr/bin/env python
"""
Manage Cup Of Tee
~~~~~~~~~~~~~~~~~
Manage the cup of tee application.
:copyright: (c) 2009 by the Werkzeug Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from werkzeug import script
def make_app():
from cupoftee import make_app
return make_app('/tmp/cupoftee.db')
action_runserver = script.make_runserver(make_app)
script.run()