- 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.
13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
/**
|
|
* Project information and version
|
|
*/
|
|
|
|
import denoConfig from '../deno.json' with { type: 'json' };
|
|
|
|
export const projectInfo = {
|
|
name: denoConfig.name,
|
|
version: denoConfig.version,
|
|
description: 'Self-hosted container platform with automatic SSL and DNS',
|
|
repository: 'https://code.foss.global/serve.zone/onebox',
|
|
};
|