simple django app with a contact form
- Python3.8
- Clone or download the repository
- Navigate inside repository
python3.8 -m venv env
source env/bin/activate
pip install --no-cache-dir -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
- Go to
http://127.0.0.1:8000/
python manage.py test contactMe