Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 0 additions & 68 deletions cardamon.bk.toml

This file was deleted.

14 changes: 7 additions & 7 deletions cardamon.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ curve = [7.627190097500079,0.07551567953624883,20.45110313049153,-1.526142275974
# desc - command to stop the process. In the case of bare-metal processes
# cardamon will pass the PID of the process to this command. You can
# use `{pid}` as a placeholder in the command e.g. `kill {pid}`.
# default: empty string
# default - empty string
# required - false
#
# proccess.type:
Expand All @@ -45,14 +45,14 @@ curve = [7.627190097500079,0.07551567953624883,20.45110313049153,-1.526142275974
# output, "parent" attaches the processes output to cardamon, "file"
# writes stdout and stderr to a file of the same name as this
# process e.g. db.stdout.
# default: "file"
# default - "file"
# required - false
#
# startup_grace:
# type - integer
# desc - the number of milliseconds Cardamon will wait before running
# scenarios
# default - 2000 ms
# type - string
# desc - the duration Cardamon will wait before running scenarios. Remember
# to include the duration unit. e.g ms, s etc
# default - "2000ms"
# required - false
#
# EXAMPLE
Expand All @@ -64,7 +64,7 @@ curve = [7.627190097500079,0.07551567953624883,20.45110313049153,-1.526142275974
# redirect.to = "file"
# process.type = "docker"
# process.containers = ["postgres"]
# startup_grace = 4000
# startup_grace = "4000ms"

[[process]]
name = "test_proc"
Expand Down
2 changes: 1 addition & 1 deletion examples/hybrid/cardamon.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ down = "bash -c 'docker stop c1 && docker rm c1'"
redirect.to = "file"
process.type = "docker"
process.containers = ["c1"]
startup_grace = 8000
startup_grace = "8000ms"

# Scenarios
# ########################################
Expand Down
11 changes: 6 additions & 5 deletions src/templates/cardamon.unix.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
# process e.g. db.stdout.
# default: "file"
# required - false
#
#
# startup_grace:
# type - integer
# desc - the number of milliseconds Cardamon will wait before running
# scenarios
# default - 2000 ms
# type - string
# desc - the duration Cardamon will wait before running scenarios. Remember
# to include the duration unit. e.g ms, s etc
# default - "2000ms"
# required - false
#
# EXAMPLE
Expand All @@ -60,6 +60,7 @@
# redirect.to = "file"
# process.type = "docker"
# process.containers = ["postgres"]
# startup_grace = "4000ms"

[[process]]
name = "test_proc"
Expand Down
13 changes: 7 additions & 6 deletions src/templates/cardamon.win.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# desc - command to stop the process. In the case of bare-metal processes
# cardamon will pass the PID of the process to this command. You can
# use `{pid}` as a placeholder in the command e.g. `kill {pid}`.
# default: empty string
# default - empty string
# required - false
#
# proccess.type:
Expand All @@ -41,14 +41,14 @@
# output, "parent" attaches the processes output to cardamon, "file"
# writes stdout and stderr to a file of the same name as this
# process e.g. db.stdout.
# default: "file"
# default - "file"
# required - false
#
# startup_grace:
# type - integer
# desc - the number of milliseconds Cardamon will wait before running
# scenarios
# default - 2000 ms
# type - string
# desc - the duration Cardamon will wait before running scenarios. Remember
# to include the duration unit. e.g. ms, s etc
# default - "2000ms"
# required - false
#
# EXAMPLE
Expand All @@ -60,6 +60,7 @@
# redirect.to = "file"
# process.type = "docker"
# process.containers = ["postgres"]
# startup_grace = "4000ms"

[[process]]
name = "test_proc"
Expand Down
Loading