- Add Dockerfile and build script for Gateway containerization - Add USAGE.md documenting SDK usage for Client/Agent implementations - Move socket.io-client to production dependencies (required by SDK) - Remove redundant timestamp field from RoutedMessage (UUID v7 contains timestamp) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
348 B
Text
45 lines
348 B
Text
# Dependencies
|
|
node_modules
|
|
|
|
# Build output
|
|
dist
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose*.yml
|
|
|
|
# Documentation
|
|
README.md
|
|
docs
|
|
|
|
# Tests
|
|
*.test.ts
|
|
*.spec.ts
|
|
__tests__
|
|
coverage
|
|
|
|
# Context directory
|
|
.context
|