-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasreview_config.toml
47 lines (32 loc) · 1.02 KB
/
asreview_config.toml
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
DEBUG = false
SQLALCHEMY_TRACK_MODIFICATIONS = true
SESSION_COOKIE_SAMESITE="Lax"
# Security
# ========
SECRET_KEY = "my_very_secret_key"
## If you serve your app over https, set these cookie-parameters to true
SESSION_COOKIE_SECURE = true
REMEMBER_COOKIE_SECURE = true
# Path for ASReview project data storage
PROJECT_DATA_DIR = "/project_folder" # Ensure this path matches the Docker volume
# You can also specify a log file location for troubleshooting:
LOG_FILE = "/project_folder/asreview_log.log"
# Authentication
# ==============
## enable authentication, enabled by default since asreview version 1.6+
LOGIN_DISABLED = true
ALLOW_ACCOUNT_CREATION = false
# SECURITY_PASSWORD_SALT = "abCDefGH"
# EMAIL_VERIFICATION = true
# Email server
# ============
# MAIL_SERVER = "smtp.sendgrid.net"
# MAIL_PORT = 465
# MAIL_USE_TLS = false
# MAIL_USE_SSL = true
# MAIL_USERNAME = "apikey"
# MAIL_PASSWORD="password"
# MAIL_DEFAULT_SENDER = "[email protected]"
# ASReview functionality
# ======================
ALLOW_TEAMS = false