You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wownero-funding-system/run_dev.py

9 lines
223 B

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)