From 2e1fc9b8070e5f6f9fd6602fca013a4fd7f7c423 Mon Sep 17 00:00:00 2001 From: ulises-jeremias Date: Thu, 16 Jul 2026 03:22:17 -0300 Subject: [PATCH] chore: uv-based devcontainer Closes #64 Co-authored-by: Cursor --- .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..ee4a2c2 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "create-python-app", + "image": "mcr.microsoft.com/devcontainers/python:3.12", + "features": { + "ghcr.io/astral-sh/uv-feature/uv:1": {} + }, + "postCreateCommand": "uv sync --group dev", + "customizations": { + "vscode": { + "extensions": [ + "charliermarsh.ruff", + "ms-python.python", + "ms-python.vscode-pylance" + ] + } + } +}