- Complete bot implementation with TUI dashboard - Trade detection and copying from monitored accounts - Magic Login authentication support - SQLite database for trade persistence - Real-time balance tracking and trade execution - 15-minute window market analysis - Comprehensive error handling and logging
50 lines
422 B
Plaintext
50 lines
422 B
Plaintext
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
*.d.ts.map
|
|
*.js.map
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime data
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Database
|
|
trades.db
|
|
bot.log
|