{"id":30068695,"url":"https://github.com/cyberdine-skynet/skynet-example-app","last_synced_at":"2026-05-15T13:36:41.012Z","repository":{"id":308112136,"uuid":"1031626232","full_name":"cyberdine-skynet/skynet-example-app","owner":"cyberdine-skynet","description":"MkDocs Material documentation site demonstrating GitOps with Argo CD","archived":false,"fork":false,"pushed_at":"2025-08-04T06:17:07.000Z","size":21,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-04T09:38:05.079Z","etag":null,"topics":["argocd","documentation","example","gitops","kubernetes","mkdocs","mkdocs-material"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/cyberdine-skynet.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}},"created_at":"2025-08-04T05:07:54.000Z","updated_at":"2025-08-04T06:17:10.000Z","dependencies_parsed_at":"2025-08-04T09:38:07.115Z","dependency_job_id":"0cfe01a9-c9d8-4376-a02f-8e175eccfefa","html_url":"https://github.com/cyberdine-skynet/skynet-example-app","commit_stats":null,"previous_names":["cyberdine-skynet/skynet-example-app"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/cyberdine-skynet/skynet-example-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyberdine-skynet%2Fskynet-example-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyberdine-skynet%2Fskynet-example-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyberdine-skynet%2Fskynet-example-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyberdine-skynet%2Fskynet-example-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cyberdine-skynet","download_url":"https://codeload.github.com/cyberdine-skynet/skynet-example-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyberdine-skynet%2Fskynet-example-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33068825,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"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":["argocd","documentation","example","gitops","kubernetes","mkdocs","mkdocs-material"],"created_at":"2025-08-08T11:00:29.437Z","updated_at":"2026-05-15T13:36:40.996Z","avatar_url":"https://github.com/cyberdine-skynet.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Skynet Example App\n\nA MkDocs Material documentation site demonstrating GitOps workflows with Argo CD on Kubernetes.\n\n## 🚀 Features\n\n- **Material Design**: Beautiful, responsive documentation using MkDocs Material theme\n- **GitOps Ready**: Automatically deployed via Argo CD when changes are pushed\n- **Kubernetes Native**: Runs on your Talos cluster\n- **Container Optimized**: Multi-stage Docker build with security best practices\n- **CI/CD Pipeline**: GitHub Actions for automated building and testing\n\n## 🛠️ Technology Stack\n\n- **[MkDocs Material](https://squidfunk.github.io/mkdocs-material/)**: Documentation site generator\n- **[Argo CD](https://argo-cd.readthedocs.io/)**: GitOps continuous deployment\n- **[Kubernetes](https://kubernetes.io/)**: Container orchestration\n- **[Talos](https://www.talos.dev/)**: Kubernetes operating system\n- **[NGINX](https://nginx.org/)**: Web server for serving static content\n\n## 📖 Documentation\n\nThe complete documentation is available at the deployed site and includes:\n\n- **GitOps Concepts**: Understanding GitOps principles and workflows\n- **Infrastructure**: Kubernetes and Talos cluster information\n- **Deployment Guide**: Step-by-step deployment instructions\n- **Examples**: Practical examples and tutorials\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- Kubernetes cluster with Argo CD installed\n- kubectl configured for cluster access\n- Docker (for local development)\n\n### Deploy with Argo CD\n\n1. Apply the Argo CD application:\n   ```bash\n   kubectl apply -f argocd/application.yaml\n   ```\n\n2. Check deployment status:\n   ```bash\n   kubectl get pods -n skynet-docs\n   ```\n\n3. Access the documentation:\n   ```bash\n   kubectl port-forward svc/skynet-docs -n skynet-docs 8080:80\n   ```\n\n### Local Development\n\n1. Install dependencies:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n2. Serve locally:\n   ```bash\n   mkdocs serve\n   ```\n\n3. Build static site:\n   ```bash\n   mkdocs build\n   ```\n\n## 🏗️ Project Structure\n\n```\nskynet-example-app/\n├── mkdocs.yml           # MkDocs configuration\n├── requirements.txt     # Python dependencies\n├── Dockerfile          # Container image definition\n├── nginx.conf          # NGINX configuration\n├── docs/               # Documentation source\n│   ├── index.md        # Homepage\n│   ├── gitops/         # GitOps documentation\n│   ├── infrastructure/ # Infrastructure docs\n│   └── examples/       # Examples and tutorials\n├── k8s/               # Kubernetes manifests\n│   ├── namespace.yaml  # Namespace definition\n│   ├── deployment.yaml # Application deployment\n│   ├── service.yaml    # Service definition\n│   └── ingress.yaml    # Ingress configuration\n├── argocd/            # Argo CD application\n│   └── application.yaml # Argo CD app definition\n└── .github/workflows/ # GitHub Actions\n    └── build.yml      # CI/CD pipeline\n```\n\n## 🔄 GitOps Workflow\n\n1. **Develop**: Make changes to documentation in `docs/` directory\n2. **Commit**: Push changes to the main branch\n3. **Build**: GitHub Actions builds and pushes Docker image\n4. **Deploy**: Argo CD detects changes and syncs to cluster\n5. **Verify**: Check deployment health and access documentation\n\n## 🐳 Container Details\n\nThe application uses a multi-stage Docker build:\n\n- **Build Stage**: Python 3.11 slim with MkDocs to generate static site\n- **Runtime Stage**: NGINX Alpine serving static content\n- **Security**: Non-root user, read-only filesystem, minimal attack surface\n- **Health Checks**: Built-in health endpoint for Kubernetes probes\n\n## 🔐 Security Features\n\n- Non-root container execution\n- Read-only root filesystem\n- Security headers in NGINX configuration\n- Resource limits and requests\n- Network policies support\n- RBAC integration with Argo CD\n\n## 📊 Monitoring\n\nThe application includes:\n\n- **Health Checks**: Liveness and readiness probes\n- **Metrics**: NGINX metrics and access logs\n- **Observability**: Integration with Prometheus/Grafana stack\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Test locally with `mkdocs serve`\n5. Submit a pull request\n\n## 📄 License\n\nThis project is part of the Skynet Platform and serves as an educational example for GitOps workflows.\n\n---\n\n⚡ **Powered by GitOps** - This site automatically deploys when changes are pushed to the main branch!\nMkDocs Material documentation site demonstrating GitOps with Argo CD\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyberdine-skynet%2Fskynet-example-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcyberdine-skynet%2Fskynet-example-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyberdine-skynet%2Fskynet-example-app/lists"}