Add devcontainer

This commit is contained in:
Sina Atalay
2026-03-02 17:24:09 +03:00
parent 314dbb89f2
commit 9cc4f4bb74
2 changed files with 22 additions and 0 deletions

3
.devcontainer/Dockerfile Normal file
View File

@@ -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

View File

@@ -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"
]
}
}
}