Files
viewarr/.gitginore
2025-12-12 14:56:50 -05:00

73 lines
1.1 KiB
Plaintext

# ==========================
# macOS System Files
# ==========================
.DS_Store
.AppleDouble
.LSOverride
._*
# ==========================
# Python (FastAPI)
# ==========================
__pycache__/
*.py[cod]
*$py.class
# Virtual Environments
venv/
.venv/
env/
.env/
# Distribution / Packaging
dist/
build/
*.egg-info/
# Unit Test / Coverage
.pytest_cache/
.coverage
htmlcov/
# Type Checking
.mypy_cache/
# ==========================
# Node.js & Svelte
# ==========================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# SvelteKit specific
.svelte-kit/
build/
.vercel/
.netlify/
# ==========================
# PocketBase (Assuming typo)
# ==========================
# Stores the actual database and user uploaded files
# You usually want to keep 'pb_migrations' but ignore the data
pb_data/
pb_public/
# ==========================
# Environment Variables (CRITICAL)
# ==========================
# Never commit secrets or API keys
.env
.env.local
.env.*.local
# ==========================
# IDE / Editor Settings
# ==========================
.vscode/
.idea/
*.swp
*.swo