92 lines
2.5 KiB
Text
92 lines
2.5 KiB
Text
# =============================================================================
|
|
# GoHorse Jobs - Root .gitignore
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# OS & IDE
|
|
# -----------------------------------------------------------------------------
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.idea/
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Environment files (keep examples)
|
|
# -----------------------------------------------------------------------------
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Logs
|
|
# -----------------------------------------------------------------------------
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Backend (Go)
|
|
# -----------------------------------------------------------------------------
|
|
backend/main
|
|
backend/*.exe
|
|
backend/tmp/
|
|
backend/.air.toml
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Frontend (Next.js)
|
|
# -----------------------------------------------------------------------------
|
|
frontend/.next/
|
|
frontend/out/
|
|
frontend/node_modules/
|
|
frontend/.pnp/
|
|
frontend/.pnp.js
|
|
frontend/.vercel/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Seeder API (Node.js)
|
|
# -----------------------------------------------------------------------------
|
|
seeder-api/node_modules/
|
|
seeder-api/dist/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Job Scraper (Python)
|
|
# -----------------------------------------------------------------------------
|
|
job-scraper-multisite/__pycache__/
|
|
job-scraper-multisite/*.pyc
|
|
job-scraper-multisite/.venv/
|
|
job-scraper-multisite/venv/
|
|
job-scraper-multisite/output/*.csv
|
|
!job-scraper-multisite/output/.gitkeep
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Build artifacts
|
|
# -----------------------------------------------------------------------------
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
dist/
|
|
build/
|
|
coverage/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Misc
|
|
# -----------------------------------------------------------------------------
|
|
.cache/
|
|
*.bak
|
|
*.tmp
|
|
|
|
# Node/Next.js/pnpm
|
|
node_modules
|
|
.next
|
|
.pnpm-store
|
|
.cache
|
|
*.log
|
|
pnpm-lock.yaml
|