From a9cae01cf5c3e5e45996f2f1af84be8771bfd58e Mon Sep 17 00:00:00 2001 From: David Manouchehri Date: Tue, 7 May 2024 11:12:09 +0000 Subject: [PATCH] Add devcontainer. --- .devcontainer/devcontainer.json | 51 +++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..0a5eb19b6 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,51 @@ +{ + "name": "Python 3.11", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/python:3.11-bookworm", + // https://github.com/devcontainers/images/tree/main/src/python + // https://mcr.microsoft.com/en-us/product/devcontainers/python/tags + + // "build": { + // "dockerfile": "Dockerfile", + // "context": ".." + // }, + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Configure tool-specific properties. + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + "settings": {}, + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance", + "GitHub.copilot", + "GitHub.copilot-chat" + ] + } + }, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + "forwardPorts": [4000], + + "containerEnv": { + "LITELLM_LOG": "DEBUG" + }, + + // Use 'portsAttributes' to set default properties for specific forwarded ports. + // More info: https://containers.dev/implementors/json_reference/#port-attributes + "portsAttributes": { + "4000": { + "label": "LiteLLM Server", + "onAutoForward": "notify" + } + }, + + // More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "litellm", + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "pipx install poetry && poetry install -E extra_proxy -E proxy" +} \ No newline at end of file