- 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.
25 lines
902 B
TypeScript
25 lines
902 B
TypeScript
/**
|
|
* Main exports and CLI entry point for Onebox
|
|
*/
|
|
|
|
export { Onebox } from './onebox.classes.onebox.ts';
|
|
export { runCli } from './onebox.cli.ts';
|
|
export { OneboxDatabase } from './onebox.classes.database.ts';
|
|
export { OneboxDockerManager } from './onebox.classes.docker.ts';
|
|
export { OneboxServicesManager } from './onebox.classes.services.ts';
|
|
export { OneboxRegistriesManager } from './onebox.classes.registries.ts';
|
|
export { OneboxNginxManager } from './onebox.classes.nginx.ts';
|
|
export { OneboxDnsManager } from './onebox.classes.dns.ts';
|
|
export { OneboxSslManager } from './onebox.classes.ssl.ts';
|
|
export { OneboxDaemon } from './onebox.classes.daemon.ts';
|
|
export { OneboxHttpServer } from './onebox.classes.httpserver.ts';
|
|
|
|
// Types
|
|
export * from './onebox.types.ts';
|
|
|
|
// Logging
|
|
export { logger } from './onebox.logging.ts';
|
|
|
|
// Version info
|
|
export { projectInfo } from './onebox.info.ts';
|