mirror of
https://github.com/sotam0316/brain_dogfood.git
synced 2026-04-24 19:48:35 +09:00
35 lines
345 B
Plaintext
35 lines
345 B
Plaintext
# [뇌사료] Git 배포용 .gitignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
build/
|
|
dist/
|
|
|
|
# Configuration & Secrets
|
|
.env
|
|
config.json
|
|
|
|
# Data & Databases
|
|
data/
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Media & Uploads
|
|
static/uploads/*
|
|
!static/uploads/.gitkeep
|
|
|
|
# Logs & Temporary
|
|
logs/
|
|
*.log
|
|
scratch/
|
|
.gemini/
|
|
.idea/
|
|
.vscode/
|
|
|
|
# System
|
|
.DS_Store
|
|
Thumbs.db
|