2018-09-05 22:27:26 +00:00
|
|
|
from funding.factory import create_app
|
2018-06-26 21:48:25 +00:00
|
|
|
import settings
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app = create_app()
|
|
|
|
app.run(host=settings.BIND_HOST, port=settings.BIND_PORT,
|
|
|
|
debug=settings.DEBUG, use_reloader=False)
|