2020-11-21 22:04:39 +01:00
|
|
|
import trio # type: ignore
|
|
|
|
|
2020-09-15 20:54:05 +02:00
|
|
|
from .commands import migrate_databases, transpile_scss, bundle_vendored
|
2020-09-04 03:39:52 +02:00
|
|
|
|
2020-11-21 22:04:39 +01:00
|
|
|
trio.run(migrate_databases)
|
2020-09-15 20:54:05 +02:00
|
|
|
transpile_scss()
|
|
|
|
bundle_vendored()
|
2020-09-05 08:00:44 +02:00
|
|
|
|
2020-11-21 22:04:39 +01:00
|
|
|
from .app import create_app
|
|
|
|
|
2020-09-05 08:00:44 +02:00
|
|
|
app = create_app()
|
2020-10-06 17:59:06 +02:00
|
|
|
|
2021-03-24 04:40:32 +01:00
|
|
|
from .settings import (
|
|
|
|
LNBITS_SITE_TITLE,
|
|
|
|
SERVICE_FEE,
|
|
|
|
DEBUG,
|
|
|
|
LNBITS_DATA_FOLDER,
|
|
|
|
WALLET,
|
|
|
|
LNBITS_COMMIT,
|
|
|
|
)
|
2020-11-21 22:04:39 +01:00
|
|
|
|
2020-10-06 17:59:06 +02:00
|
|
|
print(
|
|
|
|
f"""Starting LNbits with
|
2020-10-06 22:42:33 +02:00
|
|
|
- git version: {LNBITS_COMMIT}
|
2020-10-06 17:59:06 +02:00
|
|
|
- site title: {LNBITS_SITE_TITLE}
|
|
|
|
- debug: {DEBUG}
|
|
|
|
- data folder: {LNBITS_DATA_FOLDER}
|
|
|
|
- funding source: {WALLET.__class__.__name__}
|
|
|
|
- service fee: {SERVICE_FEE}
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2020-09-15 04:28:10 +02:00
|
|
|
app.run(host=app.config["HOST"], port=app.config["PORT"])
|