| | from os import environ |
| |
|
| | |
| | |
| | |
| | |
| |
|
| | SESSION_CONFIG_DEFAULTS = { |
| | 'real_world_currency_per_point': 1.00, |
| | 'participation_fee': 4.00, |
| | 'doc': "", |
| | } |
| |
|
| | |
| | |
| | LANGUAGE_CODE = 'de' |
| |
|
| | |
| | REAL_WORLD_CURRENCY_CODE = 'EUR' |
| | USE_POINTS = False |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | AUTH_LEVEL = environ.get('OTREE_AUTH_LEVEL') |
| |
|
| | ADMIN_USERNAME = 'admin' |
| | |
| | ADMIN_PASSWORD = environ.get('OTREE_ADMIN_PASSWORD') |
| |
|
| |
|
| | |
| | DEBUG = (environ.get('OTREE_PRODUCTION') in {None, '', '0'}) |
| |
|
| |
|
| | |
| | SECRET_KEY = '@s*yy!0&3^0l7r=ro==b3ywjyqu@)kbbl)b3rg++zpcbmz7z39' |
| |
|
| | |
| | INSTALLED_APPS = ['otree'] |
| |
|
| | SESSION_CONFIGS = [ |
| |
|
| | { |
| | 'name': 'Incentives_40_10', |
| | 'display_name': 'Incentives_40_10', |
| | 'num_demo_participants': 3, |
| | 'app_sequence': ['Ability_Load', 'Ability_Task', 'Load_and_Task_High_Load', 'survey'], |
| | 'treatment_incentives': '40/10', |
| | 'LabName': 'BonnEconLab', |
| | 'Time': 'XX:YY', |
| | 'ExperimenterName': 'NAME' |
| | }, |
| | { |
| | 'name': 'Incentives_40_20', |
| | 'display_name': 'Incentives_40_20', |
| | 'num_demo_participants': 3, |
| | 'app_sequence': ['Ability_Load', 'Ability_Task', 'Load_and_Task_High_Load', 'survey'], |
| | 'treatment_incentives': '40/20', |
| | 'LabName': 'BonnEconLab', |
| | 'Time': 'XX:YY', |
| | 'ExperimenterName': 'NAME' |
| | }, |
| | { |
| | 'name': 'Incentives_40_40', |
| | 'display_name': 'Incentives_40_40', |
| | 'num_demo_participants': 3, |
| | 'app_sequence': ['Ability_Load', 'Ability_Task', 'Load_and_Task_High_Load', 'survey'], |
| | 'treatment_incentives': '40/40', |
| | 'LabName': 'BonnEconLab', |
| | 'Time': 'XX:YY', |
| | 'ExperimenterName': 'NAME' |
| | }, |
| | ] |
| |
|