Add .gitignore file
This commit is contained in:
parent
1c6616366a
commit
21790abe6c
1 changed files with 45 additions and 67 deletions
112
.gitignore
vendored
112
.gitignore
vendored
|
|
@ -1,77 +1,55 @@
|
||||||
# Binaries
|
# Dependencies
|
||||||
# Go build artifacts
|
/node_modules/
|
||||||
bin/
|
/.pnp/
|
||||||
build/
|
.pnp.js
|
||||||
*.exe
|
|
||||||
*.dll
|
|
||||||
*.so
|
|
||||||
*.dylib
|
|
||||||
*.test
|
|
||||||
*.out
|
|
||||||
/picoclaw
|
|
||||||
/picoclaw-test
|
|
||||||
cmd/**/workspace
|
|
||||||
.gocache/
|
|
||||||
dist/
|
|
||||||
|
|
||||||
# Picoclaw specific
|
# Testing
|
||||||
|
/coverage/
|
||||||
|
|
||||||
# PicoClaw
|
# Build outputs
|
||||||
.picoclaw/
|
/dist/
|
||||||
config.json
|
/build/
|
||||||
sessions/
|
/out/
|
||||||
build/
|
|
||||||
|
|
||||||
# Coverage
|
# Logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
|
||||||
# Secrets & Config (keep templates, ignore actual secrets)
|
# Misc
|
||||||
.env
|
|
||||||
config/config.json
|
|
||||||
.security.yml
|
|
||||||
onboard
|
|
||||||
|
|
||||||
|
|
||||||
# Test
|
|
||||||
coverage.txt
|
|
||||||
coverage.html
|
|
||||||
|
|
||||||
# OS
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.env.local
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
|
||||||
# Ralph workspace
|
# Backup and temporary files
|
||||||
ralph/
|
*.bak
|
||||||
.ralph/
|
*.tmp
|
||||||
tasks/
|
*.temp
|
||||||
|
|
||||||
# Plans
|
# Git rewrite directory (from the current status)
|
||||||
docs/plans/
|
.git-rewrite/
|
||||||
docs/superpowers/
|
|
||||||
|
|
||||||
# Editors
|
# Vendor (for Go)
|
||||||
|
/vendor/
|
||||||
|
|
||||||
|
# Seahorse generated files (if any)
|
||||||
|
# Note: we have seahorse source files, so we only ignore generated ones if they appear
|
||||||
|
# But we don't know the exact pattern, so we leave it commented for now.
|
||||||
|
|
||||||
|
# Frontend specific (if not already covered by root node_modules)
|
||||||
|
# /web/frontend/node_modules/
|
||||||
|
# /web/frontend/.pnp/
|
||||||
|
# /web/frontend/.pnp.js
|
||||||
|
|
||||||
|
# IDE
|
||||||
.vscode/
|
.vscode/
|
||||||
.idea/
|
.idea/
|
||||||
|
*.suo
|
||||||
# Added by goreleaser init:
|
*.ntvs*
|
||||||
dist/
|
*.njsproj
|
||||||
*.vite/
|
*.sln
|
||||||
|
*.sw?
|
||||||
# Windows Application Icon/Resource
|
|
||||||
*.syso
|
|
||||||
.cache/
|
|
||||||
web/frontend/.pnpm-store/
|
|
||||||
_tmp_*
|
|
||||||
web/frontend/_tmp_*
|
|
||||||
|
|
||||||
# Test telegram integration
|
|
||||||
cmd/telegram/
|
|
||||||
|
|
||||||
# Keep embedded backend dist directory placeholder in VCS
|
|
||||||
!web/backend/dist/
|
|
||||||
web/backend/dist/*
|
|
||||||
!web/backend/dist/.gitkeep
|
|
||||||
|
|
||||||
.claude/
|
|
||||||
|
|
||||||
docker/data
|
|
||||||
|
|
||||||
.omc/
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue