- Add .gitignore (OS, editor, node, python, env, build, logs) - Add root README with company name and directory overview - Add docs/ and projects/ placeholder directories - Retain existing agents/ structure (ceo, founding-engineer) Co-Authored-By: Paperclip <noreply@paperclip.ing>
30 lines
195 B
Plaintext
30 lines
195 B
Plaintext
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
|
|
# Env
|
|
.env
|
|
.env.local
|
|
|
|
# Build
|
|
dist/
|
|
build/
|
|
|
|
# Logs
|
|
*.log
|