$ tree myproject
myproject
├── backup
│ ├── 2000-01-01.sql
│ └── 2000-01-05.sql
├── bin
│ ├── myapp-cli
│ └── myapp-ui
├── config
│ ├── dev.env
│ ├── nginx.conf
│ ├── prod.env
│ └── test.env
├── contrib
│ ├── custom.dic
│ ├── en_US.aff
│ ├── en_US.dic
│ ├── pl_PL.aff
│ └── pl_PL.dic
├── dist
├── docs
│ ├── api.md
│ ├── install.md
│ ├── support.md
│ └── usage.md
├── run
│ ├── about
│ ├── all
│ ├── build-compile
│ ├── build-dependencies
│ ├── build-envvars
│ ├── deploy-dev
│ ├── deploy-preprod
│ ├── deploy-prod
│ ├── deploy-test
│ ├── image-build
│ ├── image-compile
│ ├── image-push
│ ├── image-remove
│ ├── report
│ ├── test-all
│ ├── test-codestyle
│ ├── test-coverage
│ ├── test-documentation
│ ├── test-formatter
│ ├── test-functional
│ ├── test-integration
│ ├── test-lint
│ ├── test-load
│ ├── test-mutation
│ ├── test-regression
│ ├── test-security
│ ├── test-smoke
│ ├── test-static
│ ├── test-typing
│ ├── test-ui
│ └── test-unit
├── src
│ ├── myproject
│ │ └── user.py
│ └── main.py
├── tests
│ ├── main.rst
│ └── test_user.py
├── LICENSE.md
├── README.md
├── TODO.md
├── pyproject.toml
├── requirements.lock
└── requirements.test
└── requirements.txt