{"id":49915725,"url":"https://github.com/two-tech-dev/endgit-core","last_synced_at":"2026-05-16T16:10:37.455Z","repository":{"id":356558621,"uuid":"1223665091","full_name":"two-tech-dev/endgit-core","owner":"two-tech-dev","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-08T16:09:26.000Z","size":328,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-08T17:23:29.768Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/two-tech-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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":"2026-04-28T14:36:25.000Z","updated_at":"2026-05-08T16:09:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/two-tech-dev/endgit-core","commit_stats":null,"previous_names":["two-tech-dev/endgit-core"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/two-tech-dev/endgit-core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/two-tech-dev","download_url":"https://codeload.github.com/two-tech-dev/endgit-core/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-core/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33109465,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"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":[],"created_at":"2026-05-16T16:10:34.633Z","updated_at":"2026-05-16T16:10:37.450Z","avatar_url":"https://github.com/two-tech-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EndGit Core\n\n**CI/CD + Plugin Marketplace API for Endstone**\n\nEndGit Core is the backend API server that powers the EndGit ecosystem — a CI/CD pipeline and plugin marketplace designed specifically for [Endstone](https://github.com/EndstoneMC/endstone) Bedrock Dedicated Server plugins.\n\n## Features\n\n- 🔐 **GitHub OAuth** — Authenticate with GitHub, auto-link repositories\n- 📦 **Plugin Management** — Full CRUD for plugins, versions, and metadata\n- 🔄 **GitHub Webhooks** — Auto-trigger builds on `git push`\n- 📤 **Artifact Storage** — Local filesystem or S3-compatible (AWS, MinIO, R2)\n- ⭐ **Ratings \u0026 Reviews** — Community feedback system\n- 🛡️ **Moderation** — Admin tools for plugin quality control\n- 🔑 **JWT Auth** — Secure API with role-based access\n\n## Quick Start\n\n### Prerequisites\n\n- Node.js \u003e= 20\n- Docker (for PostgreSQL + Redis)\n- pnpm\n\n### Setup\n\n```bash\n# Clone\ngit clone https://github.com/two-tech-dev/endgit-core.git\ncd endgit-core\n\n# Start databases\ndocker-compose up -d\n\n# Install dependencies\npnpm install\n\n# Setup environment\ncp .env.example .env\n# Edit .env with your GitHub App credentials\n\n# Generate Prisma client \u0026 push schema\npnpm db:generate\npnpm db:push\n\n# Start development server\npnpm dev\n```\n\nThe API will be available at `http://localhost:4000`.\n\n### API Endpoints\n\n| Method | Endpoint | Description |\n|--------|----------|-------------|\n| `GET` | `/api/v1/health` | Health check |\n| `POST` | `/api/v1/auth/login` | Login with GitHub token |\n| `GET` | `/api/v1/plugins` | List plugins |\n| `GET` | `/api/v1/plugins/:slug` | Plugin details |\n| `GET` | `/api/v1/builds/:id` | Build details |\n| `POST` | `/api/v1/github/repos/:id/enable` | Enable CI for a repo |\n| `POST` | `/api/v1/webhooks/github` | GitHub webhook receiver |\n| `GET` | `/api/v1/download/file/:key` | Download artifact |\n\n## Architecture\n\n```\nendgit-core/\n├── src/\n│   ├── index.ts          # Express app entry\n│   ├── routes/           # API route handlers\n│   └── middleware/        # Auth, rate limiting\n├── packages/\n│   ├── database/         # Prisma schema \u0026 client\n│   ├── storage/          # S3 / Local storage providers\n│   └── types/            # Shared TypeScript types\n└── docker-compose.yml    # PostgreSQL + Redis\n```\n\n## Related Repositories\n\n| Repository | Description |\n|------------|-------------|\n| [endgit-web](https://github.com/two-tech-dev/endgit-web) | Next.js web dashboard |\n| [endgit-worker](https://github.com/two-tech-dev/endgit-worker) | Build worker (Docker sandboxing) |\n| [endgit-cli](https://github.com/two-tech-dev/endgit-cli) | CLI tool for developers |\n\n## License\n\nThis project is licensed under the [GNU Affero General Public License v3.0](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwo-tech-dev%2Fendgit-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwo-tech-dev%2Fendgit-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwo-tech-dev%2Fendgit-core/lists"}