Simple contacts app as a Django exercise
- from the terminal, git clone:
https://github.com/JarolinVargas/contacts-django-practice-app.git
cd
into cloned project and create the python virtual environment:python -m venv .
- activate the environment:
source bin/activate
- install dependencies:
pip install -r requirements.txt
- run the app:
python manage.py runserver