Skip to content

Latest commit

 

History

History
62 lines (49 loc) · 1.41 KB

README.md

File metadata and controls

62 lines (49 loc) · 1.41 KB

Django Project Badge TailwindCSS

Django project styled with TailWindCSS with the Tailwind-Django

Getting started

Initialize the GitFlow (press enter for all options)

git flow init

For more information about how Git Flow works click in read more


If not existing virtual environment, create one by running

python -m venv venv

Activate the environment by running

Windows

./venv/Scripts/Activate

Linux based systems

source venv/bin/activate

Install all the requirements

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