Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes significant updates to the development environment configuration for both the backend and frontend. The changes focus on improving the setup process, enhancing development tools, and ensuring consistency across the development containers.
Backend Configuration Updates:
zsh
and set it as the default shell in the backend Dockerfile. Switched to a non-root user for the rest of the setup and updated the poetry installation method. (.devcontainer/backend/Dockerfile
)devcontainer.json
to include features for Python and common utilities, setzsh
as the default shell, and added Python formatting and linting tools. (.devcontainer/backend/devcontainer.json
)docker-compose.yml
to always pull the latest images, updated the command to keep the container running, and added health checks for MongoDB. (.devcontainer/backend/docker-compose.yml
) [1] [2]Frontend Configuration Updates:
zsh
in the frontend Dockerfile and set the working directory. (.devcontainer/frontend/Dockerfile
)devcontainer.json
to include additional VSCode extensions and settings for frontend development, including ESLint and Prettier configurations. (.devcontainer/frontend/devcontainer.json
)docker-compose.yml
to always pull the latest images, updated the command to keep the container running, and added health checks for MongoDB. (.devcontainer/frontend/docker-compose.yml
) [1] [2] [3]