forked from NYUCCL/psiTurk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.txt.example
64 lines (44 loc) · 2.08 KB
/
config.txt.example
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
; This file controls various aspects of your configuration.
[AWS Access]
; An AWS key is required for posting new HITs to mechanical turk as well as
; monitoring existing HITs. You receive your key when you open an Amazon Web
; Services account.
;
; If you already have an AWS account, your key can be retreived from:
; http://aws-portal.amazon.com/gp/aws/developer/account/index.html?action=access-key
aws_access_key_id: YourAccessKeyId
aws_secret_access_key: YourSecretAccessKey
[HIT Configuration]
; These are settings pertaining to how the HIT is to be set up.
using_sandbox: true
; Basic task setup
title: "Perceptual Reaction Time"
description: "Make a series of perceptual judgments."
keywords: "Perception, Psychology"
question_url: http://localhost:5001/mturk ; URL turkers will see in your ad
max_assignments: 10 ; Number of turkers who can accept this HIT
HIT_lifetime: 24 ; In hours, how long the HIT will be available
reward: .1 ; In dollars
duration: 2 ; How long turkers have to complete once accepted.
; Requirements for workers:
US_only: true
Approve_Requirement: 95 ; What % of previous assignments have been approved.
[Database Parameters]
; Example MySQL url: mysql://user:password@domain:port/dbname
; MySQL url using MAMP: mysql://mturk@localhost/mturk?unix_socket=/Applications/MAMP/tmp/mysql/mysql.sock
database_url: mysql://mturk@localhost/mturk?unix_socket=/Applications/MAMP/tmp/mysql/mysql.sock
table_name: turkdemo
[Server Parameters]
port: 5001
cutoff_time: 30 ; Time in minutes when we assume a subject gave up
support_IE: true ; Whether to support Internet Explorer
debug: true ; NEVER leave this on when exposing the server to the public.
login_username: examplename
login_pw: examplepassword
[Task Parameters]
code_version: 1.0
num_conds: 1 ; Number of conditions of interest
num_counters: 1 ; Number of counterbalance alternatives
[User Preferences]
; These are noncritical preferences related to how the software operates.
loglevel = 2 ; 0=DEBUG, 1=INFO, 2=WARNING, 3=ERROR, 4=CRITICAL