summary refs log tree commit diff
path: root/config.py
blob: 6635f03512900aba274e1460a7129529c9a91206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import os

dbloc = "journal.db"
class Config:
    SECRET_KEY = os.urandom(24)
    
    @staticmethod
    def init_app(app):
        pass

config = {
    'default': Config
}