forked from rDrama/rDrama
1
0
Fork 0

uhfewuifurhfiurewhu

master
fireworks88 2021-08-22 22:03:01 +02:00
parent 58de375da7
commit b813a5caf0
2 changed files with 3 additions and 3 deletions

View File

@ -17,8 +17,8 @@ from files.__main__ import Base, cache
from files.helpers.security import *
site = environ.get("DOMAIN").strip()
defaulttheme = environ.get("DEFAULT_THEME").strip()
defaultcolor = environ.get("DEFAULT_COLOR").strip()
defaulttheme = environ.get("DEFAULT_THEME", "light").strip()
defaultcolor = environ.get("DEFAULT_COLOR", "fff").strip()
class User(Base, Stndrd, Age_times):
__tablename__ = "users"
id = Column(Integer, primary_key=True)

View File

@ -18,7 +18,7 @@ valid_password_regex = re.compile("^.{8,100}$")
YOUTUBE_KEY = environ.get("YOUTUBE_KEY", "").strip()
COINS_NAME = environ.get("COINS_NAME").strip()
GUMROAD_TOKEN = environ.get("GUMROAD_TOKEN").strip()
GUMROAD_TOKEN = environ.get("GUMROAD_TOKEN", "").strip()
tiers={
"(Paypig)": 1,