Initialize Hayden project repository

This commit is contained in:
deamonkai
2026-03-28 11:22:16 -05:00
commit 595c63b934
11 changed files with 525 additions and 0 deletions

128
.gitignore vendored Normal file
View File

@@ -0,0 +1,128 @@
# ------------------------------
# OS
# ------------------------------
.DS_Store
.AppleDouble
.LSOverride
Icon?
._*
.Spotlight-V100
.Trashes
# ------------------------------
# Editor / IDE
# ------------------------------
.vscode/
!.vscode/extensions.json
!.vscode/settings.json
.idea/
*.iml
*.swp
*.swo
*~
# ------------------------------
# Environment / Secrets
# ------------------------------
.env
.env.*
!.env.example
!.env.sample
*.pem
*.p12
*.key
# ------------------------------
# Logs / Runtime
# ------------------------------
*.log
logs/
*.pid
*.pid.lock
*.seed
# ------------------------------
# Archives / Temp
# ------------------------------
*.tmp
*.temp
*.bak
*.orig
*.rej
*.zip
*.tar
*.gz
*.tgz
*.7z
# ------------------------------
# Dependency directories
# ------------------------------
node_modules/
vendor/
# ------------------------------
# Build outputs / caches
# ------------------------------
dist/
build/
out/
coverage/
.cache/
.tmp/
tmp/
# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# JavaScript / TypeScript
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.next/
.nuxt/
.svelte-kit/
.parcel-cache/
*.tsbuildinfo
# Java / Kotlin
.gradle/
.classpath
.project
.settings/
*.class
# Rust
/target/
# Go
bin/
*.test
# Terraform
.terraform/
*.tfstate
*.tfstate.*
.terraform.lock.hcl
# ------------------------------
# Testing artifacts
# ------------------------------
junit.xml
coverage.xml
htmlcov/
# ------------------------------
# Local database / sqlite
# ------------------------------
*.sqlite
*.sqlite3
*.db