diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..c32d42d --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,17 @@ +# Minimal devcontainer for openai-apps-sdk-examples +FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-18 + +# Install pnpm +RUN npm install -g pnpm + +# Set up workspace +WORKDIR /workspaces/openai-apps-sdk-examples + +# Default shell +SHELL ["/bin/bash", "-c"] + +# Minimal extensions (optional) +# You can add extensions here if needed + +# Expose ports for servers +EXPOSE 4444 8000 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..614badc --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "name": "openai-apps-sdk-examples", + "build": { + "dockerfile": "Dockerfile" + }, + "customizations": { + "vscode": { + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + "extensions": [] + } + }, + "forwardPorts": [4444, 8000], + "postCreateCommand": "pnpm install" +}