52 lines
496 B
Plaintext
52 lines
496 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.venv
|
|
venv
|
|
ENV
|
|
env
|
|
.pytest_cache
|
|
.mypy_cache
|
|
.ruff_cache
|
|
|
|
# Frontend
|
|
frontend/node_modules
|
|
frontend/.next
|
|
frontend/dist
|
|
frontend/out
|
|
frontend/.env*
|
|
frontend/*.log
|
|
|
|
# Project data
|
|
.antigravity
|
|
.gemini
|
|
tmp
|
|
data
|
|
mydata
|
|
notebook_data
|
|
surreal_data
|
|
surreal-data
|
|
surreal_single_data
|
|
*.db
|
|
*.log
|
|
docker.env
|
|
.env
|
|
docker-compose*
|
|
|
|
# Documentation & CI (not needed in image)
|
|
docs
|
|
.github
|
|
|
|
# IDE and OS files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store |