Create devcontainer.json#25
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds a basic devcontainer configuration to enable development in containerized environments using VS Code or GitHub Codespaces.
- Introduces a new
.devcontainer/devcontainer.jsonfile with minimal configuration - Uses the Microsoft universal devcontainer image version 2
- Sets up an empty features object for potential future customizations
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,4 @@ | |||
| { | |||
There was a problem hiding this comment.
The devcontainer configuration is missing a "name" property. Adding a descriptive name helps developers identify the container purpose. Consider adding a name property such as "name": "Weld Development Container" or similar.
| { | |
| { | |
| "name": "Weld Development Container", |
| @@ -0,0 +1,4 @@ | |||
| { | |||
| "image": "mcr.microsoft.com/devcontainers/universal:2", | |||
There was a problem hiding this comment.
The universal devcontainer image is generic and doesn't include Rust-specific tooling. Since this is a Rust project (based on Cargo.toml), consider using a Rust-specific image like "mcr.microsoft.com/devcontainers/rust:latest" or adding the Rust feature to the features object. This will provide a better out-of-the-box development experience with pre-installed Rust toolchain.
| "image": "mcr.microsoft.com/devcontainers/universal:2", | |
| "image": "mcr.microsoft.com/devcontainers/rust:latest", |
No description provided.