chore: initialize project scaffold

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
JesseMarkowitz
2026-02-27 22:45:46 -05:00
commit 62445c7c0c
10 changed files with 218 additions and 0 deletions

38
.gitignore vendored Normal file
View File

@@ -0,0 +1,38 @@
.venv/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.eggs/
# Secrets — never commit these
.env
*.env
.env.*
!.env.example
# Exported conversation data — may contain private content
exports/
*.md
*.json
!tests/fixtures/*.json
!README.md
!FUTURE.md
!CHANGELOG.md
# Cache and logs
.ai-chat-exporter/
logs/
*.log
# Editor / OS
.DS_Store
.idea/
.vscode/
*.swp
*.swo
Thumbs.db