-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathjupyter.json
47 lines (47 loc) · 1.77 KB
/
jupyter.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
{
"Core" : {
"Name" : "Jupyter",
"Envs" : {
"NoApps" : {
"Redis" : "/opt/work/configs/empty-redis.json",
"Database" : "/opt/work/configs/empty-db.json"
},
"JustRedis" : {
"Redis" : "/opt/work/configs/local-redis.json",
"Database" : "/opt/work/configs/empty-db.json"
},
"JustRedisSecure" : {
"Redis" : "/opt/work/configs/local-secure-redis.json",
"Database" : "/opt/work/configs/empty-db.json"
},
"JustDB" : {
"Redis" : "/opt/work/configs/empty-redis.json",
"Database" : "/opt/work/configs/db.json"
},
"RedisLabs" : {
"Redis" : "/opt/work/configs/cloud-redis.json",
"Database" : "/opt/work/configs/empty-db.json"
},
"RedisLabsSecure" : {
"Redis" : "/opt/work/configs/cloud-redis-secure.json",
"Database" : "/opt/work/configs/empty-db.json"
},
"Local" : {
"Redis" : "/opt/work/configs/local-redis.json",
"Database" : "/opt/work/configs/db.json"
},
"LocalSecure" : {
"Redis" : "/opt/work/configs/local-secure-redis.json",
"Database" : "/opt/work/configs/db.json"
},
"Test" : {
"Redis" : "/opt/work/configs/redis.json",
"Database" : "/opt/work/configs/db.json"
},
"Live" : {
"Redis" : "/opt/work/configs/redis.json",
"Database" : "/opt/work/configs/db.json"
}
}
}
}