diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..9635e92 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "Omni Engineer Dev Container", + "image": "mcr.microsoft.com/devcontainers/python:3.12", + "forwardPorts": [ + 8080 + ], + "customizations": { + "vscode": { + "settings": { + "python.defaultInterpreterPath": "/usr/local/bin/python", + "python.linting.enabled": true, + "python.linting.pylintEnabled": true + } + } + }, + "postCreateCommand": "pip install -r requirements.txt" +}