poor man's flask-assets.

This commit is contained in:
fiatjaf
2020-09-15 15:54:05 -03:00
parent 3a0762ff82
commit 6928f431a7
13 changed files with 430 additions and 338 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ wallets_module = importlib.import_module("lnbits.wallets")
wallet_class = getattr(wallets_module, env.str("LNBITS_BACKEND_WALLET_CLASS", default="VoidWallet"))
ENV = env.str("QUART_ENV", default="production")
DEBUG = env.bool("QUART_DEBUG") or ENV == "development"
DEBUG = env.bool("QUART_DEBUG", default=False) or ENV == "development"
HOST = env.str("HOST", default="127.0.0.1")
PORT = env.int("PORT", default=5000)