Files
hyper/.gitignore
opencode 8494583779 Organize project files and add session summaries
- Create .temp folder for examples and temporary files
- Update .gitignore to include .temp/ directory
- Move model_comparison_examples.md to .temp folder
- Add session summaries to GEMINI.md for current development work
- Remove obsolete documentation files (IMPROVEMENT_ROADMAP.md, PROJECT_REVIEW_AND_PROPOSALS.md, README.md)
- Maintain clean project structure with proper file organization
2025-11-11 00:32:35 +01:00

45 lines
737 B
Plaintext

# --- Secrets & Environment ---
# Ignore local environment variables
.env
# Ignore virtual environment folders
.venv/
venv/
# --- Python ---
# Ignore cache files
__pycache__/
*.py[cod]
# --- Data & Logs ---
# Ignore all database files (db, write-ahead log, shared memory)
_data/*.db
_data/*.db-shm
_data/*.db-wal
# Ignore all JSON files in the data folder
_data/*.json
# Ignore all log files
_logs/
# --- SDK ---
# Ignore all contents of the sdk directory
sdk/
# --- Other ---
# Ignore custom agents directory
agents/
# Ignore temporary files and examples
.temp/
# Ignore Jekyll files
.nojekyll
# --- Editor & OS Files ---
# Ignore VSCode, JetBrains, and macOS/Windows system files
.vscode/
.idea/
.DS_Store
Thumbs.db
.opencode/