-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopier.yml
81 lines (71 loc) · 2.02 KB
/
copier.yml
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
# questions
project_name:
type: str
help: What is your project name?
validator: |-
{% if not project_name %}
Please enter a valid project name.
{% endif %}
project_type:
type: str
help: Which project do you want to configure your webapp with?
choices:
- Basic
- Blank
- HTML Button
- Reaction Time
- Multi Choice Survey
- Multi Select Survey
- Save trial parameters
- Lexical decision
- Pause/Unpause
- Canvas Slider Response
- JsPsych - Stroop
- JsPsych - RDK
- SweetBean
- SuperExperiment
theorists:
type: str
help: Which theorists would you like to install?
multiselect: True
choices:
- None
- autora[theorist-darts]
- autora[theorist-bms]
- autora[theorist-bsr]
default: "None"
validator: "{% if 'None' in theorists and theorists != ['None'] %}Cannot choose 'None' and another option {% endif %}"
experimentalists:
type: str
help: Which experimentalists would you like to install?
multiselect: True
choices:
- None
- autora[experimentalist-inequality]
- autora[experimentalist-novelty]
- autora[experimentalist-nearest-value]
- autora[experimentalist-model-disagreement]
- autora[experimentalist-uncertainty]
- autora[experimentalist-leverage]
- autora[experimentalist-falsification]
- autora[experimentalist-mixture]
- autora[experimentalist-prediction-filter]
default: "None"
validator: "{% if 'None' in experimentalists and experimentalists != ['None'] %}Cannot choose 'None' and another option {% endif %}"
firebase:
type: bool
help: Would you like to set up a firebase experiment?
default: false
docker:
type: bool
help: Would you like to use docker for deployment?
default: True
actions:
type: bool
help: Would you like to set up Github Actions for deployment?
default: True
_subdirectory: template
_tasks:
- python __hooks/__postprocess.py #dynamically create files if chosen from jspsych examples
- rm -r __hooks
- cd experiment-ui; npm install; npm run lint