mirror of
https://github.com/karpathy/nanochat.git
synced 2026-05-08 16:59:59 +00:00
Root .gitignore had `models/` which matched both ML weights AND SQLAlchemy model dirs. Changed to `/models/` (root only). Added auth/src/models/ (User) and chat-api/src/models/ (Conversation, Message). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
356 B
Plaintext
35 lines
356 B
Plaintext
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
dev-ignore/
|
|
report.md
|
|
eval_bundle/
|
|
/models/
|
|
.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
*.tfvars
|
|
*.tfvars.json
|
|
|
|
# Secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Local setup
|
|
CLAUDE.md
|
|
wandb/
|
|
onnx_export/
|
|
|
|
# Terraform
|
|
**/.terraform/*
|
|
*.tfstate
|
|
*.tfstate.*
|
|
*.tfvars
|
|
crash.log
|
|
crash.*.log
|
|
override.tf
|
|
override.tf.json
|
|
*_override.tf
|
|
*_override.tf.json
|