Files
static-web-server/Makefile.toml
2020-07-07 22:02:58 +02:00

13 lines
277 B
TOML

env_files = [
{ path = "./development.env", profile = "development" },
{ path = "./production.env", profile = "production" }
]
[tasks.watch]
command = "cargo"
args = ["watch", "-cx", "run -- ${E_ARGS}"]
[tasks.run]
command = "cargo"
args = ["run", "--", "${E_ARGS}"]