From 9cc4f4bb74c31b42eaf0beb7a0cb90c7dfe16363 Mon Sep 17 00:00:00 2001 From: Sina Atalay <79940989+sinaatalay@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:24:09 +0300 Subject: [PATCH] Add devcontainer --- .devcontainer/Dockerfile | 3 +++ .devcontainer/devcontainer.json | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 00000000..96d68eae --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,3 @@ +FROM mcr.microsoft.com/devcontainers/base:debian +COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ +RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..aae1a882 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,19 @@ +{ + "name": "rendercv", + "build": { "dockerfile": "Dockerfile" }, + "postCreateCommand": "uv sync --all-extras", + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.debugpy", + "charliermarsh.ruff", + "ms-python.black-formatter", + "astral-sh.ty", + "tombi-toml.tombi", + "redhat.vscode-yaml", + "myriad-dreamin.tinymist" + ] + } + } +}