Includes multilingual etymology fields, seed data for starter names, and CI-ready Python project layout.
56 lines
646 B
Plaintext
56 lines
646 B
Plaintext
# --- OS / editor ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# --- Secrets & env (real values never in git) ---
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
*password*
|
|
*credential*
|
|
!*example*
|
|
|
|
# --- Real data (commit *.example.* fixtures instead) ---
|
|
data/
|
|
!data/
|
|
data/*
|
|
!data/*.example.*
|
|
*.sqlite3
|
|
*.local.yml
|
|
*.local.json
|
|
|
|
# --- Python ---
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# --- Node ---
|
|
node_modules/
|
|
dist/
|
|
coverage/
|
|
npm-debug.log*
|
|
|
|
# --- Outputs / scratch ---
|
|
out/
|
|
tmp/
|
|
.tmp/
|
|
scratch/
|
|
*.log
|
|
|
|
# --- Agent tooling (local, not for the repo) ---
|
|
.cursor/
|
|
.claude/
|
|
.codex/
|
|
.agents/
|
|
.opencode/
|