{"id":35429543,"url":"https://github.com/hatlabs/cockpit-container-apps","last_synced_at":"2026-02-05T11:02:02.213Z","repository":{"id":326354386,"uuid":"1102676013","full_name":"hatlabs/cockpit-container-apps","owner":"hatlabs","description":"Cockpit module for browsing, installing, and configuring container apps","archived":false,"fork":false,"pushed_at":"2026-01-29T22:04:22.000Z","size":2306,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-30T10:42:53.872Z","etag":null,"topics":["apt-package","halos"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hatlabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-23T21:57:17.000Z","updated_at":"2026-01-29T21:58:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hatlabs/cockpit-container-apps","commit_stats":null,"previous_names":["hatlabs/cockpit-container-apps"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/hatlabs/cockpit-container-apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fcockpit-container-apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fcockpit-container-apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fcockpit-container-apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fcockpit-container-apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hatlabs","download_url":"https://codeload.github.com/hatlabs/cockpit-container-apps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fcockpit-container-apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29120481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T10:47:47.471Z","status":"ssl_error","status_checked_at":"2026-02-05T10:45:08.119Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apt-package","halos"],"created_at":"2026-01-02T20:00:41.835Z","updated_at":"2026-02-05T11:02:02.156Z","avatar_url":"https://github.com/hatlabs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cockpit Container Apps\n\nCockpit module for browsing, installing, and configuring container applications in HaLOS.\n\n## Status\n\n**In Development** - See [docs/SPEC.md](docs/SPEC.md) for the technical specification and [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for architecture details.\n\n## Features (Planned)\n\n- Browse container app stores by category\n- Search for container apps\n- Install and uninstall container app packages\n- Configure installed apps through dynamically generated forms\n\n## Development\n\n### Prerequisites\n\n- Docker and Docker Compose\n- Node.js 18+ (for frontend development)\n- Git\n\n### Quick Start\n\n```bash\n# 1. Vendor utilities from cockpit-apt\n./run vendor\n\n# 2. Build development container\n./run build-devtools\n\n# 3. Run backend tests\n./run test\n\n# 4. Open development shell\n./run backend shell\n```\n\n### Project Structure\n\n```\ncockpit-container-apps/\n├── backend/                       # Python backend\n│   ├── cockpit_container_apps/    # Main package\n│   │   ├── cli.py                 # CLI entry point\n│   │   ├── commands/              # Command handlers\n│   │   └── vendor/                # Vendored utilities\n│   │       └── cockpit_apt_utils/ # Utils from cockpit-apt\n│   ├── tests/                     # Backend tests\n│   └── pyproject.toml             # Python dependencies\n├── frontend/                      # React frontend\n│   ├── src/                       # Source files\n│   └── package.json               # Node dependencies\n├── docker/                        # Docker configurations\n├── debian/                        # Debian packaging\n├── docs/                          # Documentation\n│   ├── SPEC.md                    # Technical specification\n│   └── ARCHITECTURE.md            # Architecture documentation\n├── run                            # Development commands\n└── VERSION                        # Package version\n```\n\n### Development Commands\n\n```bash\n# Vendoring\n./run vendor              # Vendor utilities from cockpit-apt\n./run vendor-check        # Check vendored version\n\n# Backend\n./run test                # Run backend tests\n./run lint                # Run linter\n./run typecheck           # Run type checker\n./run backend shell       # Open development shell\n\n# Frontend\ncd frontend \u0026\u0026 npm install\n./run frontend build      # Build frontend\n./run frontend test       # Run frontend tests\n\n# Docker\n./run build-devtools      # Build dev container\n./run build-debtools      # Build packaging container\n\n# Packaging\n./run build-deb           # Build Debian package\n```\n\n### Vendored Utilities\n\nThis project vendors utilities from [cockpit-apt](https://github.com/hatlabs/cockpit-apt) to avoid a package dependency. The vendoring is done at build time:\n\n```bash\n# Update vendored utilities\n./run vendor\n\n# Or specify a version\n./run vendor v0.2.0+1\n```\n\nThe vendored utilities include:\n- Error handling and formatting\n- Input validation\n- Store configuration loading\n- Store filter matching\n- Debtag parsing\n- Repository metadata parsing\n\n## Part of HaLOS\n\nThis module is part of the [HaLOS](https://github.com/hatlabs/halos-distro) distribution.\n\n## License\n\nLGPL-2.1-or-later\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatlabs%2Fcockpit-container-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhatlabs%2Fcockpit-container-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatlabs%2Fcockpit-container-apps/lists"}