Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/knands42/python-ddd-clean-architecture
- Owner: knands42
- Created: 2022-06-23T17:38:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-13T04:37:50.000Z (over 2 years ago)
- Last Synced: 2023-12-15T06:26:38.785Z (11 months ago)
- Topics: clean-architecture, domain-driven-design, fast-api, notification-pattern, presenter, python3
- Language: Python
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```