This repository was archived by the owner on Sep 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
90 lines (74 loc) · 2.55 KB
/
settings.py
File metadata and controls
90 lines (74 loc) · 2.55 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import os
from os import environ
import dj_database_url
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
# if you set a property in SESSION_CONFIG_DEFAULTS, it will be inherited by all configs
# in SESSION_CONFIGS, except those that explicitly override it.
# the session config can be accessed from methods in your apps as self.session.config,
# e.g. self.session.config['participation_fee']
SESSION_CONFIG_DEFAULTS = {
'real_world_currency_per_point': 1.00,
'participation_fee': 0.00,
'doc': "",
}
SESSION_CONFIGS = [
{
'name': 'Devils_Task_Frog_Time_Preference',
'display_name': "Devil's Task, Frog & Time Preference",
'num_demo_participants': 4,
'app_sequence': ['OneByOne', 'AllAtOnce', 'Frog', 'TimePreference'],
},
{
'name': 'Devils_Task',
'display_name': "Devil's Task",
'num_demo_participants': 1,
'app_sequence': ['OneByOne', 'AllAtOnce'],
},
{
'name': 'Frog',
'display_name': 'Frog',
'num_demo_participants': 2,
'app_sequence': ['Frog'],
},
{
'name': 'Time_Preference',
'display_name': 'Time Preference',
'num_demo_participants': 1,
'app_sequence': ['TimePreference'],
}
]
# ISO-639 code
# for example: de, fr, ja, ko, zh-hans
LANGUAGE_CODE = 'en'
# e.g. EUR, GBP, CNY, JPY
REAL_WORLD_CURRENCY_CODE = 'USD'
USE_POINTS = True
POINTS_CUSTOM_NAME = ''
DATABASES = {
'default': dj_database_url.config(
# Rather than hardcoding the DB parameters here,
# it's recommended to set the DATABASE_URL environment variable.
# This will allow you to use SQLite locally, and postgres/mysql
# on the server
# Examples:
# export DATABASE_URL=postgres://USER:PASSWORD@HOST:PORT/NAME
# export DATABASE_URL=mysql://USER:PASSWORD@HOST:PORT/NAME
# fall back to SQLite if the DATABASE_URL env var is missing
default='sqlite:///' + os.path.join(BASE_DIR, 'db.sqlite3')
)
}
ROOMS = []
# for security, best to set admin password in an environment variable
if environ.get('OTREE_ADMIN_USERNAME') not in {None}:
ADMIN_USERNAME = environ.get('OTREE_ADMIN_USERNAME')
else:
ADMIN_USERNAME = "admin"
if environ.get('OTREE_ADMIN_PASSWORD') not in {None}:
ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD')
else:
ADMIN_PASSWORD = "admin"
DEMO_PAGE_INTRO_HTML = """ """
SECRET_KEY = 'sf&a2hg_kj0pq6qheo9h5lpg#448fman8%9a3)%1jv8=v48stb'
# if an app is included in SESSION_CONFIGS, you don't need to list it here
INSTALLED_APPS = ['otree']
DEBUG = False