Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 17 additions & 24 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,36 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Python 3",
"name": "Debian",
Copy link

Copilot AI Jan 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The container name 'Debian' describes the base OS rather than the project purpose. Consider using a more descriptive name like 'Tailspin Toys Dev Container' or 'Crowd Funding Platform' to better reflect the project.

Suggested change
"name": "Debian",
"name": "Tailspin Toys Crowd Funding Dev Container",

Copilot uses AI. Check for mistakes.
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
"image": "mcr.microsoft.com/devcontainers/base:bookworm",

// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/schlich/devcontainer-features/playwright:0": {},
"ghcr.io/devcontainers-extra/features/typescript:2": {}
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {},
"ghcr.io/schlich/devcontainer-features/playwright:0": {}
},
"postCreateCommand": "./scripts/setup-env.sh",
"forwardPorts": [
4321,
5100
],
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"ms-dotnettools.csharp",
"GitHub.copilot",
"GitHub.copilot-chat",
"github.copilot",
"github.copilot-chat",
"ms-python.python",
"ms-python.vscode-pylance",
"svelte.svelte-vscode",
"astro-build.astro-vscode"
]
}
}
},

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
4321,
5100
],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "pip3 install --user -r requirements.txt",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
Loading