aboutsummaryrefslogtreecommitdiff
path: root/gn3/config.py
blob: 9c6ec348547fc2eda5ef5c4b9f9c9ac1e08b4d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Config:
    DEBUG = True
    Testing = False


class DevConfig(Config):
    Testing = True
    SQLALCHEMY_DATABASE_URI = "mysql://kabui:1234@localhost/test"
    SECRET_KEY = "password"
    SQLALCHEMY_TRACK_MODIFICATIONS = False


def get_config():
    return {
        "dev": DevConfig
    }