30 lines
462 B
Plaintext
30 lines
462 B
Plaintext
# --- Pi Agent Specifics ---
|
|
# Ignore local Pi caches and internal data
|
|
.pi/
|
|
sessions/
|
|
pi-debug.log
|
|
permissions.json
|
|
|
|
# --- Node.js / TypeScript Extensions ---
|
|
# Ignore dependencies (Pi runs npm install on the Gitea repo automatically)
|
|
node_modules/
|
|
dist/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# --- Sensitive Data & Credentials ---
|
|
# NEVER push these to Gitea
|
|
auth.json
|
|
auth.oauth.json
|
|
.env
|
|
.env.local
|
|
|
|
# --- OS & Editor Bloat ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*~
|
|
|