mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
56 lines
522 B
Plaintext
56 lines
522 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
*.egg
|
|
venv/
|
|
.venv/
|
|
|
|
# Node
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Docker
|
|
postgres_data/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# SSL
|
|
nginx/ssl/*.pem
|
|
nginx/ssl/*.key
|
|
nginx/ssl/*.crt
|
|
|
|
# Coverage
|
|
htmlcov/
|
|
.coverage
|
|
coverage/
|
|
|
|
# Local SQLite / CI DB artifacts (never commit)
|
|
backend/*.db
|
|
backend/ci_*.db
|
|
|
|
# Playwright / E2E output
|
|
frontend/test-results/
|
|
frontend/playwright-report/
|