Files
PlantUML/.devcontainer/devcontainer.json
Max P. 91f8150479 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.
2025-04-22 21:02:28 +00:00

18 lines
287 B
JSON

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