-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.toml
78 lines (61 loc) · 2.02 KB
/
template.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#####
# Configuration file for copy-iris-items
# Syntax is TOML (https://toml.io/en/).
##### Server connection details: the server to retrieve the items from.
[Server]
host = ""
port = ""
namespace = ""
user = ""
password = ""
# Whether HTTPS is needed to connect to IRIS.
https = false
# The number of threads (paralell fetches) to use. Must be a number
# between 1 (not parallel) and 20 (the maximum number of concurrent
# fetches).
threads = 1
##### What belongs to this project
[Project]
# Specify items belonging to the project here. Wildcards using asterisks
# are supported. Exclude rules are prefixed with a minus. CSP files are
# supported; specify them starting with their URL path (e.g.
# '/csp/dev/*').
items = [
]
# Whether to include items mapped from another database.
mapped = false
# Whether to include generated items.
generated = false
# Ensemble Data Lookup Tables to include.
lookup = [
]
[Project.enssettings]
# Ensemble/interoperability: system default settings. Leave the name empty
# to prevent retrieving them. The name used in Ensemble deployments is
# "Ens.Config.DefaultSettings.esd".
name = ""
# Whether to strip values from the settings.
strip = true
##### Where and how to save things.
[Local]
# Directory to place source files (class, mac, inc, etc.) in.
dir = '{cfgname}\src'
# Directory for CSP files.
cspdir = '{cfgname}\csp'
# Directory for data files.
datadir = '{cfgname}\data'
# Directory for the log file. If empty, the log file is placed adjacent
# to the configuration file.
logdir = ""
# Encoding for (non-binary) files; default is UTF-8.
encoding = "UTF-8"
# Whether to make directories for packages (true) or not (false)
subdirs = true
# Whether to save a file (per connection) with cookies, so that the CSP
# licence can be retained between runs.
cookies = false
# Output compatibility: either 'vscode' or 'export'. The former omits
# a trailing newline on export, that the latter includes.
compatibility = 'vscode'
# Augment/override settings in this file with the one specified here.
augment_from = ''