Skip to content

schir2/schirDev

Repository files navigation

Django BoilerPlate

Setup

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 autoload

comment out the theme app from INSTALLED_APPS in settings.py

INSTALLED_APPS = [
    ...,
    'tailwind',
    # 'theme',
    ...
]
python manage.py tailwind init

uncomment out the theme app from INSTALLED_APPS in settings.py

INSTALLED_APPS = [
    ...,
    'tailwind',
    'theme',
    ...
]
python manage.py tailwind install
python manage.py npm start

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published