Files
StarPunk/.gitignore
Phil Skentelbery 4b0ac627e5 docs: Update README to v0.9.5 with architect-approved corrections
- Update version to 0.9.5 throughout README
- Clarify Micropub as coming in v1.0 (currently in development)
- Add note that database auto-initializes on first run
- Fix deployment documentation link to standards location
- Add .gitignore entry for test.ini temporary file

All changes approved by architect agent.

Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-24 12:21:09 -07:00

70 lines
607 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environment
.venv/
venv/
env/
ENV/
env.bak/
venv.bak/
# Environment Configuration (CRITICAL - CONTAINS SECRETS)
.env
*.env
!.env.example
# User Data (CRITICAL - NEVER COMMIT)
data/
*.db
*.sqlite
*.sqlite3
*.db-journal
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
*.iml
# Testing
.pytest_cache/
.coverage
htmlcov/
*.cover
.hypothesis/
.tox/
.nox/
test.ini
# Logs
*.log
logs/
# OS
Thumbs.db
.directory