mirror of https://github.com/lukechilds/lnbits.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
284 B
9 lines
284 B
5 years ago
|
import os
|
||
|
|
||
|
INVOICE_KEY = os.getenv("INVOICE_KEY")
|
||
|
ADMIN_KEY = os.getenv("ADMIN_KEY")
|
||
|
API_ENDPOINT = os.getenv("API_ENDPOINT")
|
||
|
|
||
|
LNBITS_PATH = os.path.dirname(os.path.realpath(__file__))
|
||
|
DATABASE_PATH= os.getenv("DATABASE_PATH") or os.path.join(LNBITS_PATH, "data", "database.sqlite3")
|