We have a some Issue, relative to imports: #98, #118
Obviously, the project template has a structure not protected from an user imports mistakes. Thus, we need to refactor it to make a directory structure much clear and predictable.
The structure I prefer is:
example/
├── .env
├── .gitignore
├── docker-compose.yaml
├── Dockerfile
├── README.md
├── requirements.txt
├── src/
├───── serve.py
└───── app/
├── apps/
│ ├── __init__.py
│ └── handlers.py
├── config/
│ ├── __init__.py
│ └── settings.py
└── __init__.py
But we can discuss it and make a better one.