mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 09:54:21 +01:00
9 lines
168 B
Python
9 lines
168 B
Python
from .app import create_app
|
|
from .commands import migrate_databases
|
|
|
|
|
|
migrate_databases()
|
|
|
|
app = create_app()
|
|
app.run(host=app.config["HOST"], port=app.config["PORT"])
|