52 lines
572 B
Plaintext
52 lines
572 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.next/
|
|
out/
|
|
build/
|
|
dist/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.log
|
|
|
|
# Deployment env files (MUST NOT be committed)
|
|
DEPLOY_*.env
|
|
|
|
# Sensitive runtime artifacts
|
|
backend/data/cookies/*.json
|
|
|
|
# Local security backup artifacts (created during history rewrite)
|
|
.security-backup/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Project specific
|
|
backend/domainwatch.db
|
|
frontend/.next/
|
|
|