forked from LorenFrankLab/spyglass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dj_local_conf_example.json
56 lines (56 loc) · 1.65 KB
/
dj_local_conf_example.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
{
"database.host": "localhost or lmf-db.cin.ucsf.edu",
"database.password": "Delete this line for shared machines",
"database.user": "Your username",
"database.port": 3306,
"database.reconnect": true,
"connection.init_function": null,
"connection.charset": "",
"loglevel": "INFO",
"safemode": true,
"fetch_format": "array",
"display.limit": 12,
"display.width": 14,
"display.show_tuple_count": true,
"database.use_tls": null,
"enable_python_native_blobs": true,
"filepath_checksum_size_limit": 1073741824,
"stores": {
"raw": {
"protocol": "file",
"location": "/your/base/path/raw",
"stage": "/your/base/path/raw"
},
"analysis": {
"protocol": "file",
"location": "/your/base/path/analysis",
"stage": "/your/base/path/analysis"
}
},
"custom": {
"debug_mode": "false",
"test_mode": "false",
"spyglass_dirs": {
"base": "/your/base/path",
"raw": "/your/base/path/raw",
"analysis": "/your/base/path/analysis",
"recording": "/your/base/path/recording",
"sorting": "/your/base/path/spikesorting",
"waveforms": "/your/base/path/waveforms",
"temp": "/your/base/path/tmp",
"video": "/your/base/path/video"
},
"kachery_dirs": {
"cloud": "/your/base/path/.kachery-cloud",
"storage": "/your/base/path/kachery_storage",
"temp": "/your/base/path/tmp"
},
"dlc_dirs": {
"base": "/your/base/path/deeplabcut",
"project": "/your/base/path/deeplabcut/projects",
"video": "/your/base/path/deeplabcut/video",
"output": "/your/base/path/deeplabcut/output"
},
"kachery_zone": "franklab.default"
}
}