randomisedbackend2 / default_settings.py
akiko19191's picture
Upload folder using huggingface_hub
72eef4f verified
raw
history blame contribute delete
284 Bytes
# -*- coding: utf-8 -*-
import os
from os.path import dirname, join
SECRET_KEY = os.urandom(16)
# configure file based session
SESSION_TYPE = "filesystem"
SESSION_FILE_DIR = join(dirname(__file__), "cache")
# configure flask app for local development
ENV = "development"