Files
slot/ui/.devcontainer/devcontainer.json

20 lines
457 B
JSON
Raw Normal View History

2025-06-02 15:03:04 +02:00
{
"name": "Bun",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "latest"
}
2025-06-03 22:32:20 +02:00
},
2025-06-04 23:26:12 +02:00
"containerEnv": {
"GIT_REPO_URL": "https://scm.vilanet.fr/kriss/slot"
},
2025-06-03 22:32:20 +02:00
"customizations": {
2025-06-04 23:26:12 +02:00
"jetbrains": {}
2025-06-03 22:32:20 +02:00
},
2025-06-04 23:26:12 +02:00
"forwardPorts": [5173],
"workspaceMount": "source=slot_sources,target=/workspace,type=volume",
2025-06-03 22:56:48 +02:00
"workspaceFolder": "/workspace",
2025-06-04 23:26:12 +02:00
"postCreateCommand": "if [ ! -d .git ]; then git clone $GIT_REPO_URL .; fi"
2025-06-02 15:03:04 +02:00
}