Project to familiarise myself with the Django web framework. This project will be a portfolio website to showcase my other website projects and CV.
I followed the tutorial at https://realpython.com/get-started-with-django-1/ to get started.
- Python 3.11+
- pip
- pipenv
To install dependencies from Pipfile
, run:
pipenv install
and apply migrations to set up the SQLite3 database:
python manage.py migrate
To run the server, enter pipenv shell
and run:
python manage.py runserver
To run the tests, enter pipenv shell
and run:
python manage.py test