File size: 284 Bytes
72eef4f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# -*- 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"