{PROJECT_DESCRIPTION}
./
├── .devcontainer/ # Devcontainer configuration
│ ├── devcontainer.json # Devcontainer configuration
│ ├── post-create.sh # Post-create script
│ └── docker-compose.yml # Docker-compose configuration
├── .github/ # Github configuration
├── .vscode/ # VSCode configuration
├── compose-samples/ # Docker-compose samples
├── .dockerignore # Docker ignore file
├── .gitattributes # Git attributes file
├── .gitignore # Git ignore file
├── .pre-commit-config.yaml # Pre-commit configuration
├── Dockerfile # Dockerfile
├── mypy.ini # Mypy configuration
├── ruff.toml # Ruff configuration
├── LICENSE # License file
└── README.md # Readme file- Work on a project with a consistent development environment
- Share a development environment with your team
- Quickly onboard new developers
- Create builds from a consistent environment