wownero-funding-system/run_dev.py
CamTheGeek 955de2544e aeonfunding update for wownero
a lot more generic; a lot more configurable; UI goodness with accounting; wallet account support for ezmode
2018-09-05 18:27:26 -04:00

7 lines
222 B
Python

from funding.factory import create_app
import settings
if __name__ == '__main__':
app = create_app()
app.run(host=settings.BIND_HOST, port=settings.BIND_PORT,
debug=settings.DEBUG, use_reloader=False)