-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_config.json
61 lines (58 loc) · 1.95 KB
/
_config.json
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
{
"_datajoint_comment": "datajoint-specific keys",
"database.host": "127.0.0.1",
"database.user": null,
"database.password": null,
"database.port": 3306,
"connection.charset": "utf8",
"filestores": {
"attachstore": "~/attachstore",
"datastore": "~/datastore"
},
"enable_python_native_blobs": true,
"enable_python_pickle_blobs": true,
"enable_automakers": true,
"_app_comment": "app-specific keys",
"init_database": true,
"include_fly": true,
"secret_key": "myprecious",
"tmp_folder": "~/tmp",
"skip_schemas": ["mysql", "sys", "performance_schema", "tutorial"],
"user_schema": "experimenters",
"user_table": "Experimenter",
"user_name": "experimenter",
"user_active": "active",
"group_schema": "experimenters",
"group_table": "ExperimentalProject",
"group_name": "experimental_project",
"assignedgroup_schema": "experimenters",
"assignedgroup_table": "AssignedExperimentalProject",
"standard_password": "fruitfly",
"administrator_info" : {
"experimenter": "administrator",
"first_name": "FIRSTNAME",
"last_name": "LASTNAME",
"email": "[email protected]",
"phone": "000-000-0000",
"date_joined": "2020-01-01",
"active": true
},
"administrators": ["administrator"],
"wiki_folder": "~/loris/wiki",
"autoscript_folder": "~/loris/autoscripts",
"external_wiki": "#",
"_ssh_comment": "keys for SSH tunneling of MySQL database. See: https://sshtunnel.readthedocs.io/en/latest/",
"ssh_address": null,
"ssh_username": "administrator",
"ssh_pkey": "~/.ssh/id_rsa",
"_slack_comment": "key for slack channels",
"slack": [
{
"token": null,
"channel": "#papers",
"table": "misc.Paper",
"text": "{experimenter} posted a paper\nLink: {link}\nTags: {tags}\nMessage: {comments}",
"upon": "insert"
}
]
}