Adds dev container for PlantUML development

Introduces a development container configuration with Docker support.
Includes PlantUML VS Code extension and forwards port 8080 for local server access.

Facilitates a consistent development environment for PlantUML projects.
This commit is contained in:
2025-04-22 21:02:28 +00:00
parent dbbdb7a1af
commit 91f8150479

View File

@@ -0,0 +1,17 @@
{
"name": "PlantUML Dev",
"build": {
"dockerfile": "Dockerfile"
},
"forwardPorts": [8080],
"customizations": {
"vscode": {
"extensions": [
"jebbs.plantuml"
],
"settings": {
"plantuml.server": "http://localhost:8080"
}
}
}
}