chore: repository hygiene — P2 cleanup
- .gitignore: add coverage/ and data/ patterns - .dockerignore: exclude screenshots, tests, scripts, .github, docs assets from build context for faster Docker builds - Delete docs/social-preview.html (one-time generator, no longer needed) - Delete public/locales/.gitkeep (directory has de.json and en.json) - scripts/seed-demo.js: replace hardcoded absolute path with portable resolve(__dirname, '..', 'data', 'oikos.db') default - Add .github/PULL_REQUEST_TEMPLATE.md with summary, changes, checklist Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+32
-2
@@ -1,6 +1,36 @@
|
||||
node_modules
|
||||
.git
|
||||
.github
|
||||
.claude
|
||||
.worktrees
|
||||
.env
|
||||
.env.*
|
||||
.nvmrc
|
||||
.gitignore
|
||||
.dockerignore
|
||||
|
||||
# Documentation & screenshots (not needed at runtime)
|
||||
docs/screenshots/
|
||||
docs/superpowers/
|
||||
docs/social-preview.html
|
||||
docs/social-preview.png
|
||||
docs/logo.svg
|
||||
|
||||
# Tests
|
||||
test-*.js
|
||||
test-*.mjs
|
||||
coverage/
|
||||
|
||||
# Scripts (dev-only)
|
||||
scripts/
|
||||
|
||||
# Markdown files (README, CHANGELOG, etc.)
|
||||
*.md
|
||||
oikos-redesign-spec.md
|
||||
CLAUDE.md
|
||||
|
||||
# IDE & OS
|
||||
.vscode/
|
||||
.idea/
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
Reference in New Issue
Block a user