- Complete Deno-based architecture following nupst/spark patterns - SQLite database with full schema - Docker container management - Service orchestration (Docker + Nginx + DNS + SSL) - Registry authentication - Nginx reverse proxy configuration - Cloudflare DNS integration - Let's Encrypt SSL automation - Background daemon with metrics collection - HTTP API server - Comprehensive CLI - Cross-platform compilation setup - NPM distribution wrapper - Shell installer script Core features: - Deploy containers with single command - Automatic domain configuration - Automatic SSL certificates - Multi-registry support - Metrics and logging - Systemd integration Ready for Angular UI implementation and testing.
51 lines
448 B
Plaintext
51 lines
448 B
Plaintext
# Deno
|
|
.deno/
|
|
deno.lock
|
|
|
|
# Node modules (for npm wrapper)
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
dist/binaries/*
|
|
!dist/binaries/.gitkeep
|
|
|
|
# Angular UI
|
|
ui/dist/
|
|
ui/node_modules/
|
|
ui/.angular/
|
|
|
|
# Development
|
|
.nogit/
|
|
*.log
|
|
*.db
|
|
*.db-journal
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# SSL certificates (sensitive)
|
|
certs/
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
|
|
# Config with secrets
|
|
config.local.json
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|