An open-source platform to showcase GitHub repositories, publish developer blogs, and boost discoverability through SEO-optimized project pages, sitemaps, and llms.txt — built for developers who want their work indexed, linked, and shared.
Developer Hub is an open-source platform for developer visibility. It syncs GitHub repositories into rich, crawlable documentation pages and gives registered users a dashboard to submit blogs, link external repos, and share suggestions — all moderated through an admin approval workflow.
Whether you are publishing SDK docs, listing community projects, or growing organic traffic to your GitHub profile, Developer Hub handles the SEO layer so your repositories and writing get found.
- GitHub repo sync — Automatically pulls repositories, READMEs, file trees, and metadata from a GitHub profile via
github:sync - SEO-first project pages — Structured project pages with code explorer, schema markup,
sitemap.xml, andllms.txtfor search engines and AI crawlers - Community blogs — Users can register, write Markdown posts, and publish after admin approval
- Linked repositories — Submit and showcase external GitHub repos alongside official projects
- User dashboard — Manage profile, blogs, linked repos, and API tokens
- Admin command center — Approve submissions, manage users, and configure site settings
- Authentication — Email verification, password reset, social login (OAuth), and two-factor authentication
- REST API — Sanctum-powered API for linked repo integrations
- PHP 8.3+
- Composer 2
- Node.js 18+ and npm
- SQLite (default) or MySQL / PostgreSQL
# Clone the repository
git clone https://github.com/ghostcompiler/ghostcompiler.git
cd ghostcompiler
# Install dependencies and set up the app
composer setupOr step by step:
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate
npm install
npm run buildCopy .env.example to .env and configure at minimum:
| Variable | Description |
|---|---|
APP_NAME |
Application name (e.g. Developer Hub) |
APP_URL |
Public URL of your deployment |
DB_CONNECTION |
Database driver (sqlite by default) |
GITHUB_TOKEN |
GitHub personal access token for repo sync |
php artisan github:synccomposer devThis starts the Laravel server, queue worker, log tail, and Vite dev server concurrently.
| Path | Purpose |
|---|---|
app/Http/Controllers/ |
Web and API controllers |
app/Console/Commands/ |
github:sync, project tree caching |
app/Models/ |
Projects, blogs, linked repos, users |
resources/views/ |
Blade templates for public and dashboard UI |
routes/web.php |
Public routes, auth, dashboard, SEO endpoints |
routes/api.php |
Sanctum API routes |
| URL | Description |
|---|---|
/sitemap.xml |
Dynamic sitemap for projects, blogs, and repo files |
/llms.txt |
Machine-readable site summary for AI crawlers |
/robots.txt |
Crawler directives with sitemap reference |
composer testThis project is open-sourced under the MIT license.
Built using ServBay
- Mac M4 Tested
- macOS Apple Silicon
- Powered by ServBay

