obs-ss-plugin-webui/.gitignore
Decobus 0d9c88958e
Some checks failed
Lint and Build / build (22) (pull_request) Failing after 34s
Lint and Build / build (20) (pull_request) Failing after 49s
Add empty template database for clean project setup
- Create sources.template.db with empty tables but proper schema
- Update .gitignore to track template database while ignoring local databases
- Allows users to copy template and configure FILE_DIRECTORY for their local setup
- Prevents accidental commits of local development data

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-19 05:31:29 -04:00

106 lines
1.2 KiB
Text

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# env files (can opt-in for committing if needed)
.env*
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
# IntelliJ IDEA
.idea/
*.iml
*.iws
*.ipr
out/
.idea_modules/
# VS Code
.vscode/
*.code-workspace
# Local environment variables
.env.local
.env.development.local
.env.test.local
.env.production.local
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Logs
logs
*.log
# ESLint cache
.eslintcache
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# Database files (exclude local development databases)
files/*.db
files/*.sqlite
files/*.sqlite3
# But include template database
!files/*.template.db
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Temporary files
*.tmp
*.temp
# Claude Code settings (if you want to keep them private)
.claude/settings.local.json