File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,27 @@ mantis {
26
26
# The port for setting up a Prometheus server over localhost.
27
27
port = 13798
28
28
}
29
+
30
+ vm {
31
+ # internal | external
32
+ mode = "internal"
33
+
34
+ external {
35
+ # possible values are:
36
+ # - iele: runs a binary provided at `executable-path` with `port` and `host` as arguments (`./executable-path $port $host`)
37
+ # - kevm: runs a binary provided at `executable-path` with `port` and `host` as arguments (`./executable-path $port $host`)
38
+ # - mantis: if `executable-path` is provided, it will run the binary with `port` and `host` as arguments
39
+ # otherwise mantis VM will be run in the same process, but acting as an external VM (listening at `host` and `port`)
40
+ # - none: doesn't run anything, expect the VM to be started by other means
41
+ vm-type = "mantis"
42
+
43
+ # path to the executable - optional depending on the `vm-type` setting
44
+ executable-path = "./bin/mantis-vm"
45
+
46
+ host = "127.0.0.1"
47
+ port = 8888
48
+ }
49
+ }
29
50
}
30
51
31
52
akka {
You can’t perform that action at this time.
0 commit comments