17 lines
448 B
Python
17 lines
448 B
Python
import os
|
|
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
Debug = False
|
|
RPI = True
|
|
ClientInterface = "wlan0"
|
|
# wlan1 access point
|
|
|
|
|
|
class Config(object):
|
|
SECRET_KEY = os.environ.get("SECRET_KEY") or "dfsads1!FASASF231(*&FADSs"
|
|
SQLALCHEMY_DATABASE_URI = os.environ.get("DATABASE_URL") or "sqlite:///" + os.path.join(basedir, "app.db")
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
|
NORD_USER = "rmj014@gmail.com"
|
|
NORD_PASS = "pw"
|