Initial commit

This commit is contained in:
dsc 2020-10-03 04:45:45 +02:00 committed by Sander Ferdinand
commit 7785d5befe
16 changed files with 8344 additions and 0 deletions

9
run.py Normal file
View file

@ -0,0 +1,9 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2020, The Monero Project.
# Copyright (c) 2020, dsc@xmr.pm
from fapi.factory import create_app
import settings
app = create_app()
app.run(settings.host, port=settings.port, debug=settings.debug, use_reloader=False)