Django 5.2.4
django-allauth 65.9.0
django-browser-reload 1.18.0
django-cleanup 9.0.0
django-htmx 1.23.2
pillow 11.3.0
Download zip file
or
git clone command (need git to be installed) and remove git folder afterwards
git clone https://github.com/andyjud/django-starter.git . && rm -rf .git
python3 -m venv venv
source venv/bin/activate
python3 -m venv venv
(Powershell:) .\venv\Scripts\Activate.ps1
(or Command Prompt:) venv\Scripts\activate
(or Git Bash:) source venv/Scripts/activate
pip install --upgrade pip
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
python manage.py shell
from django.core.management.utils import get_random_secret_key
print(get_random_secret_key())
exit()