-
Notifications
You must be signed in to change notification settings - Fork 18
/
default-config.ron
69 lines (69 loc) · 2.23 KB
/
default-config.ron
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
(
// Remove any artifacts created during a previous integration
// test run before starting.
clean: true,
// Keep the git repositories. The following effects take place
// when this is enabled:
//
// + Don't delete git repositories if [Options::clean] is
// enabled.
keep_repos: true,
// Whether to install install prerequisites. By default this is
// `true`. Setting this to `false` makes the test faster for
// development purposes.
install_prerequisites: true,
// Path to where the log files, key files and transcripts are
// stored.
out_dir: "out",
/// The code repository for the `aleo-setup` project.
///
/// Example [Repo::Remote] specification:
///
/// ```ron
/// aleo_setup_state_monitor_repo: (
/// type: "Remote",
/// dir: "aleo-setup",
/// url: "[email protected]:AleoHQ/aleo-setup.git",
/// branch: "include-build",
/// ),
/// ```
///
/// Example [Repo::Local] specification:
///
/// ```ron
/// aleo_setup_repo: (
/// type: "Local",
/// dir: "../aleo-setup",
/// ),
/// ```
aleo_setup_repo: (
type: "Remote",
dir: "aleo-setup",
url: "[email protected]:AleoHQ/aleo-setup.git",
branch: "master",
),
// The code repository for the `aleo-setup-coordinator` project.
// Checking out a remote repository.
aleo_setup_coordinator_repo: (
type: "Remote",
dir: "aleo-setup-coordinator",
url: "[email protected]:AleoHQ/aleo-setup-coordinator.git",
branch: "main",
),
// Whether to run the `aleo-setup-state-monitor` application.
// Requires `python3` and `pip` to be installed. Only supported
// on Linux.
state_monitor: Some((
// The code repository for the `aleo-setup-state-monitor`
// project. Checking out a remote repository.
repo: (
type: "Remote",
dir: "aleo-setup-state-monitor",
url: "[email protected]:AleoHQ/aleo-setup-state-monitor.git",
branch: "include-build",
),
// The address used for the `aleo-setup-state-monitor` web
// server. By default `127.0.0.1:5001`.
address: "127.0.0.1:5001",
)),
)