mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 10:39:59 +01:00
d3fc52cd49
a big refactor that: - fixes some issues that might have happened (or not) with asynchronous reactions to payments; - paves the way to https://github.com/lnbits/lnbits/issues/121; - uses more async/await notation which just looks nice; and - makes it simple(r?) for one extension to modify stuff from other extensions.
27 lines
626 B
Python
27 lines
626 B
Python
import trio # type: ignore
|
|
|
|
from .commands import migrate_databases, transpile_scss, bundle_vendored
|
|
|
|
trio.run(migrate_databases)
|
|
transpile_scss()
|
|
bundle_vendored()
|
|
|
|
from .app import create_app
|
|
|
|
app = create_app()
|
|
|
|
from .settings import LNBITS_SITE_TITLE, SERVICE_FEE, DEBUG, LNBITS_DATA_FOLDER, WALLET, LNBITS_COMMIT
|
|
|
|
print(
|
|
f"""Starting LNbits with
|
|
- git version: {LNBITS_COMMIT}
|
|
- site title: {LNBITS_SITE_TITLE}
|
|
- debug: {DEBUG}
|
|
- data folder: {LNBITS_DATA_FOLDER}
|
|
- funding source: {WALLET.__class__.__name__}
|
|
- service fee: {SERVICE_FEE}
|
|
"""
|
|
)
|
|
|
|
app.run(host=app.config["HOST"], port=app.config["PORT"])
|