29 lines
418 B
TOML
29 lines
418 B
TOML
version = 1.0
|
|
RootPath = "client"
|
|
|
|
[[remote]]
|
|
name = "origin"
|
|
host = ""
|
|
port = 8694
|
|
|
|
[[remote]]
|
|
name = "secondOrigin"
|
|
host = ""
|
|
port = 4253
|
|
|
|
[[remote]]
|
|
name = "my new Remote"
|
|
host = "hostname.com"
|
|
port = 1234
|
|
|
|
[ignore]
|
|
files = ["file1.txt", "file2.txt"]
|
|
exts = [".jpg", ".png"]
|
|
folders = []
|
|
|
|
[nocompress]
|
|
files = ["fileA.log", "fileB.txt"]
|
|
exts = [".exe", ".jpg"]
|
|
folders = ["binaries"]
|
|
|