Initial commit

This commit is contained in:
Valère Plantevin
2026-04-21 20:31:35 -04:00
commit 882d13f402
21 changed files with 3910 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
"name": "quic-ecs-dt",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/rust:1": {
"version": "latest",
"profile": "minimal"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "os-provided"
}
},
"containerEnv": {
"RUST_LOG": "info",
"RUST_BACKTRACE": "1",
"VM_ENDPOINT": "http://your-server:8428",
"CM5_HOST": "192.168.1.x"
},
"forwardPorts": [3000, 8428, 4848],
"portsAttributes": {
"3000": { "label": "Grafana" },
"8428": { "label": "Victoria Metrics" },
"4848": { "label": "Quarto preview" }
},
"remoteUser": "coder",
"postCreateCommand": "bash .devcontainer/setup.sh"
}