- Replace wildcard CORS origins with restricted domain list - Add comprehensive security patterns to .gitignore - Create SECURITY.md with deployment security guidelines - Restrict CORS methods and headers to minimum required - Add security documentation for production deployment
104 lines
875 B
Plaintext
104 lines
875 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-debug.log*
|
|
.npm/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Environment files
|
|
.env*
|
|
!.env.example
|
|
*.secret
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
credentials/
|
|
secrets/
|
|
auth/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Database
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Build outputs
|
|
dist/
|
|
.output/
|
|
.astro/
|
|
|
|
# Test outputs
|
|
reports/
|
|
coverage/
|
|
.coverage
|
|
.pytest_cache/
|
|
.cache/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Backup files
|
|
backups/
|
|
*.bak
|
|
*.backup
|
|
|
|
# uv
|
|
.python-version |