mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 10:39:59 +01:00
10 lines
235 B
Python
10 lines
235 B
Python
from .app import create_app
|
|
from .commands import migrate_databases, transpile_scss, bundle_vendored
|
|
|
|
migrate_databases()
|
|
transpile_scss()
|
|
bundle_vendored()
|
|
|
|
app = create_app()
|
|
app.run(host=app.config["HOST"], port=app.config["PORT"])
|