- Initialize git repository - Add comprehensive .gitignore (protects .env and secrets) - Fix package.json (correct main entry, add metadata) - Expand .env.example with all required variables and comments - Add README.md with architecture, setup, and commands - Clean up empty scaffolding directories (logs removed, agents/models marked) - Backup previous .env file locally This establishes a safe foundation before further development.
30 lines
254 B
Text
30 lines
254 B
Text
# Dependencies
|
|
node_modules/
|
|
|
|
# Environment secrets - CRITICAL
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# IDE / Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Test / Coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Misc
|
|
*.tgz
|
|
tmp/
|
|
temp/
|