Update doc: conf.toml detail

李衍志523370910113 2024-09-15 22:47:00 +08:00
parent 7bc26a1509
commit 11987392b6

@ -29,10 +29,13 @@ name = "" # stage name here
name = "sandbox" name = "sandbox"
[stages.executor.with.default] [stages.executor.with.default]
args = [] # giving args here args = [] # giving args here
env = ["PATH=/usr/bin:/bin:/usr/local/bin"] env = ["PATH=/usr/bin:/bin:/usr/local/bin"] # provide env, usually set it as this example
# cpu, memory and proc limit
cpuLimit = 10_000_000_000 cpuLimit = 10_000_000_000
memoryLimit = 104_857_600 memoryLimit = 104_857_600
procLimit = 50 procLimit = 50
copyInCwd = true copyInCwd = true
copyOut = ["stdout", "stderr"] copyOut = ["stdout", "stderr"]
[stages.executor.with.default.copyIn.healthcheck] [stages.executor.with.default.copyIn.healthcheck]