blob: e8611bf34dcc04d5086238b9441b17b839b7d334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
"""Default application settings."""
import os
# LOGLEVEL
LOGLEVEL = "WARNING"
# Flask settings
SECRET_KEY = ""
# Database settings
SQL_URI = "mysql://webqtlout:webqtlout@localhost/db_webqtl"
AUTH_DB = f"{os.environ.get('HOME')}/genenetwork/gn3_files/db/auth.db"
AUTH_MIGRATIONS = "migrations/auth"
# Redis settings
REDIS_URI = "redis://localhost:6379/0"
# OAuth2 settings
OAUTH2_SCOPE = (
"profile", "group", "role", "resource", "user", "masquerade",
"introspect")
|