-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.js
49 lines (49 loc) · 976 Bytes
/
config.js
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
const config = {
cache_enabled: true,
cachePath: './data/cache',
material: {
density: 1.39, // matches PetG in Cura
},
port: 3014,
kits: [
{
name: 'Small funnel, small bottle, caps',
name_ru: 'Маленькая воронка, маленькая баночка, крышечки',
items: [
{
model: 'funnel',
id: 'small',
},
{
model: 'funnel',
id: 'big',
},
{
model: 'funnel',
id: 'big_to_med',
},
{
model: 'cup',
id: 'small',
},
{
model: 'cup',
id: 'for_funnels',
},
{
model: 'cap',
id: 'for_small_cup',
},
{
model: 'cap',
id: 'for_small_funnel',
},
{
model: 'cap',
id: 'connector_for_big_funnel',
},
]
}
],
};
module.exports = config;