Django project styled with TailWindCSS with the Tailwind-Django
Initialize the GitFlow (press enter for all options)
git flow init
For more information about how Git Flow works click in read more
python -m venv venv
Windows
./venv/Scripts/Activate
Linux based systems
source venv/bin/activate
pip install -r requirements.py
Install all the precommit hooks:
pre-commit install
Apply all the initial migrations
python manage.py migrate
Install the TailWind CSS dependencies
python manage.py tailwind install
Start the development server for TailWind by running:
python manage.py tailwind start
Start the development server for Django project by running:
python manage.py runserver