-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.py
75 lines (61 loc) · 1.71 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"""
This is an optional file that defined app level settings such as:
- database settings
- session settings
- i18n settings
This file is provided as an example:
"""
import os
# db settings
APP_FOLDER = os.path.dirname(__file__)
APP_NAME = os.path.split(APP_FOLDER)[-1]
# DB_FOLDER: Sets the place where migration files will be created
# and is the store location for SQLite databases
DB_FOLDER = os.path.join(APP_FOLDER, "databases")
DB_URI = "sqlite://storage.db"
DB_POOL_SIZE = 1
# location where to store uploaded files:
UPLOAD_PATH = os.path.join(APP_FOLDER, "uploads")
# send email on regstration
VERIFY_EMAIL = False
# account requires to be approved ?
REQUIRES_APPROVAL = False
# email settings
SMTP_SERVER = None
SMTP_SENDER = "[email protected]"
SMTP_LOGIN = "username:password"
SMTP_TLS = False
# session settings
SESSION_TYPE = "cookies"
SESSION_SECRET_KEY = "<my secret key>"
MEMCACHE_CLIENTS = ["127.0.0.1:11211"]
REDIS_SERVER = "localhost:6379"
# logger settings
LOGGERS = [
"warning:stdout"
] # syntax "severity:filename" filename can be stderr or stdout
# single sign on Google (will be used if provided)
OAUTH2GOOGLE_CLIENT_ID = None
OAUTH2GOOGLE_CLIENT_SECRET = None
# single sign on Google (will be used if provided)
OAUTH2FACEBOOK_CLIENT_ID = None
OAUTH2FACEBOOK_CLIENT_SECRET = None
# enable PAM
USE_PAM = False
# enable LDAP
USE_LDAP = False
LDAP_SETTINGS = {
"mode": "ad",
"server": "my.domain.controller",
"base_dn": "ou=Users,dc=domain,dc=com",
}
# i18n settings
T_FOLDER = os.path.join(APP_FOLDER, "translations")
# Celery settings
USE_CELERY = False
CELERY_BROKER = "redis://localhost:6379/0"
# try import private settings
try:
from .settings_private import *
except:
pass