Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 423 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 423 Bytes

Clean-Architecture-with-Python

Clean Architecture with Python, Published by Packt

Getting started

Create a virtual environment (with python >= 3.13)

> python -m venv .venv 

> source .venv/bin/activate

Install dependencies

> pip install --upgrade pip && pip install -r requirements.txt

Run tests

## Go to the chapter folder
> cd Chapter_5/TodoApp

## Run tests
> pytest