Basic Django project setup for the True Safeguard website.
- Create and activate the virtual environment:
- Linux/macOS:
python3 -m venv .venvsource .venv/bin/activate
- Install dependencies:
pip install django
- Run migrations and start the server:
python manage.py migratepython manage.py runserver
Open http://127.0.0.1:8000/ to see the home page.