forked from a1ex4/ownfoil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop_config.toml
43 lines (36 loc) · 877 Bytes
/
shop_config.toml
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
games_dir = "/games"
[shop]
# Scan interval, in minutes
scan_interval = 5
# Files with these extensions will be added to the shop
valid_ext = [
'nsp',
'nsz',
'xci',
'zip'
]
template = "shop_template.toml"
[saves]
# Enable or disable automatic saves backup
enabled = true
# Interval to retrieve saves, in minutes.
interval = 60
# Switches configuration for save retrieval.
# If user and pass are not specified, use anonymous connection
# Alex's Switch
[[saves.switches]]
host = "192.168.1.200"
port = "5000"
folders = [
{local = "Saves/Tinfoil", remote = "/switch/tinfoil/saves/common"},
{local = "Saves/JKSV", remote = "/JKSV"}
]
# Another Switch
# [[saves.switches]]
# host = "192.168.1.150"
# port = "5002"
# user = "username"
# pass = "password"
# folders = [
# {"local": "Saves/Mac/Tinfoil", "remote": "/switch/tinfoil/saves/common"},
# ]