Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions MAKEFILE
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
.PHONY: help django migrate makemigrations collectstatic tw-dev tw-build npm-install clean

help:
@echo "Available commands:"
@echo " make django # Start Django dev server"
@echo " make migrate # Apply database migrations"
@echo " make makemigrations # Create new migrations"
@echo " make collectstatic # Collect static files"
@echo " make tw-dev # Run Tailwind watcher with PostCSS"
@echo " make tw-build # Build Tailwind CSS once (PostCSS)"
@echo " make npm-install # Install npm dependencies"
@echo " make clean # Remove pycache and static build files"
@echo "Available commands":

@echo " make django" # Start Django dev server
@echo " make migrate" # Apply database migrations
@echo " make makemigrations" # Create new migrations
@echo " make collectstatic" # Collect static files
@echo " make tw-dev" # Run Tailwind watcher with PostCSS
@echo " make tw-build" # Build Tailwind CSS once (PostCSS)
@echo " make npm-install" # Install npm dependencies
@echo " make clean" # Remove pycache and static build files

django:
python manage.py runserver
Expand Down