{"id":49547125,"url":"https://github.com/jlkdevelop/opensourcefoundation","last_synced_at":"2026-05-02T20:03:31.314Z","repository":{"id":354766488,"uuid":"1224760561","full_name":"jlkdevelop/opensourcefoundation","owner":"jlkdevelop","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-30T01:28:43.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-30T01:29:37.569Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opensourcefoundation.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jlkdevelop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2026-04-29T15:46:19.000Z","updated_at":"2026-04-30T01:28:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jlkdevelop/opensourcefoundation","commit_stats":null,"previous_names":["jlkdevelop/opensourcefoundation"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jlkdevelop/opensourcefoundation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlkdevelop%2Fopensourcefoundation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlkdevelop%2Fopensourcefoundation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlkdevelop%2Fopensourcefoundation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlkdevelop%2Fopensourcefoundation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jlkdevelop","download_url":"https://codeload.github.com/jlkdevelop/opensourcefoundation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlkdevelop%2Fopensourcefoundation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32547653,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T19:18:06.202Z","status":"ssl_error","status_checked_at":"2026-05-02T19:16:21.335Z","response_time":132,"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-02T20:03:30.580Z","updated_at":"2026-05-02T20:03:31.304Z","avatar_url":"https://github.com/jlkdevelop.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenSource Foundation\n\nA sustainability platform for open-source software. Maintainers create project profiles, supporters fund them, and payouts flow through Stripe Connect.\n\n[![CI](https://github.com/jlkdevelop/opensourcefoundation/actions/workflows/ci.yml/badge.svg)](https://github.com/jlkdevelop/opensourcefoundation/actions/workflows/ci.yml)\n\n## Stack\n\n| Layer       | Choice                       |\n|-------------|------------------------------|\n| Framework   | Next.js 15 (App Router)      |\n| Language    | TypeScript                   |\n| Styling     | Tailwind CSS + shadcn/ui     |\n| ORM         | Prisma 7                     |\n| Database    | PostgreSQL (Neon)            |\n| Auth        | Auth.js v5 (GitHub + email)  |\n| Payments    | Stripe + Stripe Connect      |\n| Hosting     | Vercel                       |\n| CI          | GitHub Actions               |\n\nSee [`docs/adr/0001-tech-stack.md`](docs/adr/0001-tech-stack.md) for the full architecture decision record.\n\n## Quick Start (\u003c 10 min)\n\n### Prerequisites\n\n- Node.js 20+\n- npm 10+\n- A PostgreSQL database (local or [Neon](https://neon.tech) free tier)\n\n### 1. Clone and install\n\n```bash\ngit clone https://github.com/jlkdevelop/opensourcefoundation.git\ncd opensourcefoundation\nnpm install\n```\n\n### 2. Configure environment\n\n```bash\ncp .env.example .env\n```\n\nOpen `.env` and fill in at minimum:\n\n| Variable | Where to get it |\n|---|---|\n| `DATABASE_URL` | Neon dashboard → Connection string (pooled) |\n| `AUTH_SECRET` | `openssl rand -hex 32` |\n| `AUTH_GITHUB_ID` / `AUTH_GITHUB_SECRET` | [GitHub OAuth app](https://github.com/settings/developers) (callback: `http://localhost:3000/api/auth/callback/github`) |\n\nLeave Stripe and email empty for local UI development — they are only needed for the funding flow.\n\n### 3. Set up the database\n\n```bash\nnpx prisma migrate dev\n```\n\n### 4. Start the dev server\n\n```bash\nnpm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000).\n\n---\n\n## Scripts\n\n| Script | Description |\n|---|---|\n| `npm run dev` | Start local dev server |\n| `npm run build` | Production build |\n| `npm run type-check` | TypeScript validation |\n| `npm run lint` | ESLint |\n| `npm run test` | Vitest unit tests |\n| `npm run test:watch` | Vitest in watch mode |\n| `npm run db:validate` | Validate Prisma schema |\n\n## Project Structure\n\n```\napp/           Next.js App Router (pages, API routes, server actions)\ncomponents/    Shared UI components\nprisma/        Prisma schema + migrations\ndocs/adr/      Architecture Decision Records\n__tests__/     Unit tests (Vitest)\n```\n\n## Contributing\n\n1. Fork and create a feature branch.\n2. Run `npm run type-check \u0026\u0026 npm run lint \u0026\u0026 npm run test` before pushing.\n3. Open a PR — CI runs automatically and Vercel posts a preview URL.\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjlkdevelop%2Fopensourcefoundation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjlkdevelop%2Fopensourcefoundation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjlkdevelop%2Fopensourcefoundation/lists"}