mirror of
https://github.com/static-web-server/static-web-server.git
synced 2026-01-25 05:06:33 +00:00
13 lines
277 B
TOML
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}"]
|