** Master MDS HSMA ** Clean Architecture - Architekturstil am praktischen Beispiel z.B. in Python.
 
 
Go to file
Felix Jan Michael Mucha 1384c83864 switched to real database 2024-12-03 22:44:18 +01:00
src switched to real database 2024-12-03 22:44:18 +01:00
.gitignore add .gitignore 2024-11-22 17:59:44 +01:00
LICENSE Initial commit 2024-11-08 09:24:02 +01:00
README.md moved files into layer dir 2024-11-30 18:05:58 +01:00

README.md

IWS_clean_architecture

** Master MDS HSMA ** Clean Architecture - Architekturstil am praktischen Beispiel z.B. in Python.

run python script as a module e.g.: python -m framework_driver.db.db_cart

Layers

  • entities
    • cart_item.py
    • cart.py
    • product.py
  • use_cases
    • cart_reporsitory_interface.py
    • view_cart.py
  • interfaces_adapters
    • cart_database_interface.py
    • cart_repository.py
  • framework_driver
    • db
      • db_cart.py
      • db_product.py
      • db_setup.py
      • db_user.py
      • shop.db
    • ui
      • coming soon ...