import random import string import time SQLALCHEMY_DATABASE_URI = 'sqlite:///hole.db' SQLALCHEMY_TRACK_MODIFICATIONS = False JSON_AS_ASCII = False CLIENT_ID = '' CLIENT_SECRET = '' MASTODON_URL = 'https://mastodon.social' REDIRECT_URI = 'http://hole.thu.monster/_auth' SALT = ''.join(random.choices(string.ascii_letters + string.digits, k=32)) ADMINS = ['cs_114514'] START_TIME = int(time.time()) ENABLE_TMP = True