mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 11:11:10 -05:00
Add JavaScript functionality for dynamic UI updates and filtering
- Implemented font color configuration based on numeric values in various sections. - Added resizing functionality for input fields to accommodate text length. - Initialized filters on document ready for improved user interaction. - Created visualization for profile data using fetched dot format. - Enhanced SQL detail page with click event handling for row navigation. - Ensured consistent highlighting for code blocks across multiple pages.
This commit is contained in:
@@ -24,7 +24,7 @@ export ALLOWED_HOSTS="localhost,127.0.0.1,0.0.0.0"
|
||||
export CSRF_TRUSTED_ORIGINS="http://localhost:8000,http://127.0.0.1:8000,https://127.0.0.1:8000"
|
||||
|
||||
# Database configuration (PostgreSQL with PostGIS)
|
||||
export DATABASE_URL="postgis://thrillwiki_user:thrillwiki_pass@localhost:5432/thrillwiki_db"
|
||||
export DATABASE_URL="postgis://thrillwiki_user:thrillwiki@localhost:5432/thrillwiki_test_db"
|
||||
|
||||
# Cache configuration (use locmem for development if Redis not available)
|
||||
export CACHE_URL="locmemcache://"
|
||||
@@ -100,7 +100,7 @@ uv run manage.py collectstatic --noinput --clear
|
||||
# Build Tailwind CSS
|
||||
if command -v npm &> /dev/null; then
|
||||
echo "🎨 Building Tailwind CSS..."
|
||||
uv run manage.py tailwindcss --build
|
||||
uv run manage.py tailwind build
|
||||
else
|
||||
echo "⚠️ npm not found, skipping Tailwind CSS build"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user