mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-24 17:11:09 -05:00
- Introduced a comprehensive Secret Management Guide detailing best practices, secret classification, development setup, production management, rotation procedures, and emergency protocols. - Implemented a client-side performance monitoring script to track various metrics including page load performance, paint metrics, layout shifts, and memory usage. - Enhanced search accessibility with keyboard navigation support for search results, ensuring compliance with WCAG standards and improving user experience.
134 lines
1.4 KiB
Plaintext
134 lines
1.4 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Django
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
/backend/staticfiles/
|
|
/backend/media/
|
|
|
|
# UV
|
|
.uv/
|
|
backend/.uv/
|
|
|
|
# Generated requirements files (auto-generated from pyproject.toml)
|
|
# Uncomment if you want to track these files
|
|
# backend/requirements.txt
|
|
# backend/requirements-dev.txt
|
|
# backend/requirements-test.txt
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
.pnpm-store/
|
|
|
|
# Vue.js / Vite
|
|
/frontend/dist/
|
|
/frontend/dist-ssr/
|
|
*.local
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
backend/.env
|
|
frontend/.env
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Coverage
|
|
coverage/
|
|
*.lcov
|
|
.nyc_output
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.cache
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Build outputs
|
|
/dist/
|
|
/build/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.orig
|
|
*.swp
|
|
*_backup.*
|
|
*_OLD_*
|
|
|
|
# Archive files
|
|
*.tar.gz
|
|
*.zip
|
|
*.rar
|
|
|
|
# Security
|
|
*.pem
|
|
*.key
|
|
*.cert
|
|
|
|
# Local development
|
|
/uploads/
|
|
/backups/
|
|
.django_tailwind_cli/
|
|
backend/.env
|
|
frontend/.env
|
|
|
|
# Extracted packages
|
|
django-forwardemail/
|
|
frontend/
|
|
frontend
|
|
.snapshots |