Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/knands42/python-ddd-clean-architecture

Just a fast Api project to learn how to implement a architecture patterns
https://github.com/knands42/python-ddd-clean-architecture

clean-architecture domain-driven-design fast-api notification-pattern presenter python3

Last synced: 5 days ago
JSON representation

Just a fast Api project to learn how to implement a architecture patterns

Awesome Lists containing this project

README

        

# Clean Architecture and Domain Driven Design with Python

### Summary

Application for implementing clean architecture and domain driven design with Python. Just it, there is no other
purpose. I didn't make 100% of test coverage, but all the tests are passing.

### Execute the following command to install the dependencies:

```bash
pythom -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pip install "fastapi[all]"

# To execute the server to test the API
uvicorn src.infrastructure.api.server:app --reload
# To execute the tests
pytest
```