From 91f815047993e28b066132501e7544206fb83b3d Mon Sep 17 00:00:00 2001 From: "Max P." Date: Tue, 22 Apr 2025 21:02:28 +0000 Subject: [PATCH] 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. --- .devcontainer/devcontainer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..3838bb7 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "PlantUML Dev", + "build": { + "dockerfile": "Dockerfile" + }, + "forwardPorts": [8080], + "customizations": { + "vscode": { + "extensions": [ + "jebbs.plantuml" + ], + "settings": { + "plantuml.server": "http://localhost:8080" + } + } + } +}