From 6ac1aab5a62c2bf862791218cee033374503871b Mon Sep 17 00:00:00 2001 From: HemaOnGit Date: Sun, 22 Feb 2026 07:42:43 +0100 Subject: [PATCH] chore: add GitHub Codespaces configuration Add devcontainer configuration to enable quick environment setup and automatic dependency installation in GitHub Codespaces. --- .devcontainer/devcontainer.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..95975928 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + "name": "Kalshi Starter Code", + "image": "mcr.microsoft.com/devcontainers/python:3.10", + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance" + ] + } + }, + "postCreateCommand": "pip install -r requirements.txt" +}