#!/bin/bash # Remove all files in staticfiles except .gitkeep if [ -d "staticfiles" ]; then find staticfiles -type f ! -name '.gitkeep' -delete find staticfiles -type d -empty -delete fi # Build the tailwind theme css cd src/pkmntrade_club/theme/static_src npm install . && npm run build cd ../../