A Django + HTMX + AlpineJS + TailwindCSS/DaisyUI boilerplate to kickstart your project and start shipping
docker-compose build
docker-compose up
# you should now see the demo running at localhost:8000
# Install packages
bun install
# Add tailwindcss to global scope
bun add -g tailwindcss
# (optional) Create tailwind.config
tailwindcss init
# Run this during development
tailwindcss -i ./src/input.css -o ./static/css/style.css --watch
# Make django migration files
docker-compose run web manage makemigrations
# Create superuser
docker-compose run web manage createsuperuser
# Run tests
docker-compose run web test