Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 551 Bytes

File metadata and controls

53 lines (38 loc) · 551 Bytes

Activate Env

source .venv/bin/activate
python manage.py runserver

Check python version

  • python --version Should be "Python 3.14.2"

Install packages

uv lock --upgrade
uv sync
uv tree --outdated
uv tree --outdated --depth=1
uv lock --upgrade
uv sync

Run Server

python manage.py runserver

New Clone:

uv venv

Setup Databse

Migrate

python manage.py migrate

Create superuser

python manage.py createsuperuser

Populate Dummy Data

python manage.py populate_dummy_data