python -m venv .venv
./.venv/Scripts/activate
pip install -r requirements
python manage.py makemigrations
python manage.py loaddata fixtures/data
python manage.py migrate
python manage.py autoloadcomment out the theme app from INSTALLED_APPS in settings.py
INSTALLED_APPS = [
...,
'tailwind',
# 'theme',
...
]python manage.py tailwind inituncomment out the theme app from INSTALLED_APPS in settings.py
INSTALLED_APPS = [
...,
'tailwind',
'theme',
...
]python manage.py tailwind install
python manage.py npm start