lodgeit/manage.py
David Pursehouse b19a482d47 Fix PEP-8 errors
There are several instances of the error:

   E305 expected 2 blank lines after class or function definition

Fix them all by adding the necessary blank lines.

Change-Id: I37e2990772f05a100fe303c1512b7bdfb10a660d
2017-02-25 13:47:11 +09:00

39 lines
920 B
Python
Executable File

#!/usr/bin/env python
from werkzeug import script, create_environ, run_wsgi_app
from lodgeit import local
from lodgeit.application import make_app
from lodgeit.database import db
dburi = 'sqlite:////tmp/lodgeit.db'
SECRET_KEY = 'no secret key'
def run_app(app, path='/'):
env = create_environ(path, SECRET_KEY)
return run_wsgi_app(app, env)
action_runserver = script.make_runserver(
lambda: make_app(dburi, SECRET_KEY, debug=True),
use_reloader=True)
action_shell = script.make_shell(
lambda: {
'app': make_app(dburi, SECRET_KEY, False, True),
'local': local,
'db': db,
'run_app': run_app
},
('\nWelcome to the interactive shell environment of LodgeIt!\n'
'\n'
'You can use the following predefined objects: app, local, db.\n'
'To run the application (creates a request) use *run_app*.')
)
if __name__ == '__main__':
script.run()