{"id":19806420,"url":"https://github.com/ory/summit-platform","last_synced_at":"2025-05-01T07:30:50.406Z","repository":{"id":37903292,"uuid":"436631803","full_name":"ory/summit-platform","owner":"ory","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-12T16:17:41.000Z","size":119456,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-04-29T14:21:31.171Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://summit.ory.sh/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ory.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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},"funding":{"patreon":"_ory","open_collective":"ory"}},"created_at":"2021-12-09T13:43:13.000Z","updated_at":"2025-04-04T04:32:51.000Z","dependencies_parsed_at":"2023-10-10T19:00:41.137Z","dependency_job_id":"34daff19-ebab-4c18-8199-70bd861baabd","html_url":"https://github.com/ory/summit-platform","commit_stats":{"total_commits":196,"total_committers":8,"mean_commits":24.5,"dds":0.5306122448979591,"last_synced_commit":"e87d4af9af7e59bc7b3b6bf869c3893802d7eff8"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ory%2Fsummit-platform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ory%2Fsummit-platform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ory%2Fsummit-platform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ory%2Fsummit-platform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ory","download_url":"https://codeload.github.com/ory/summit-platform/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251840118,"owners_count":21652282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-11-12T09:07:30.690Z","updated_at":"2025-05-01T07:30:50.400Z","avatar_url":"https://github.com/ory.png","language":"TypeScript","funding_links":["https://patreon.com/_ory","https://opencollective.com/ory"],"categories":[],"sub_categories":[],"readme":"# Ory Summit Platform\n\n- Framework: Next.js\n- Authentication: Ory Identities\n- CSS: Tailwind CSS\n- Database: Supabase\n- Deployment: Vercel\n\n## Local Development\n\n```bash\nexport NEXT_PUBLIC_ORY_SDK_URL=https://practical-swirles-whg26u2ofh.projects.oryapis.com\nnpm run dev\n\nory tunnel --dev --project practical-swirles-whg26u2ofh \\\n http://localhost:3000\n```\n\n## Development\n\n\u003e Some things like OIDC and Passwordless don't work locally. You probably also\n\u003e have to remove `router.push(basePath + \"/ui/login\");` from `useAuth.tsx` to\n\u003e not get redirected. Use local for CSS or layout and test other features on the\n\u003e Staging domain.\n\nRun the development server:\n\n```bash\nexport NEXT_PUBLIC_ORY_SDK_URL=https://wonderful-gauss-otwhn7get8.projects.oryapis.com/\nnpm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the\nresult.\n\nYou can start editing the page by modifying `pages/index.tsx`. The page\nauto-updates as you edit the file.\n\n[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on\n[http://localhost:3000/api/hello](http://localhost:3000/api/hello). This\nendpoint can be edited in `pages/api/hello.ts`.\n\nThe `pages/api` directory is mapped to `/api/*`. Files in this directory are\ntreated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead\nof React pages.\n\nThis project uses\n[`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to\nautomatically optimize and load Inter, a custom Google Font.\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js\n  features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\n## Webhooks Guide\n\nEdit the `ory-identity-config.json-$project_name` to add the webhook you want \u0026\nupdate configuration on production with the steps above.\n[Base64 encode](https://www.base64encode.org/) the data you want to capture:\n\n```js\nfunction(ctx) {\nproperties: {\n   email: ctx.identity.traits.email,\n   name: ctx.identity.traits.name,\n   },\n}\n```\n\nSupabase Webhook:\n\n```js\nfunction(ctx) {\n  id: ctx.identity.id,\n  created_at: ctx.identity.created_at,\n  name: ctx.identity.traits.name,\n}\n```\n\n## Setup\n\n### Importing Identities\n\nAssumptions:\n\n1. You cloned the repository and cd'd inside it.\n2. You have the [Ory CLI](https://www.ory.sh/docs/guides/cli/installation) and\n   [jq](https://stedolan.github.io/jq/download/) installed.\n3. You adjusted the parameters in `setup/manage_ids.sh`. Per default a new Ory\n   project will be created and all 100 identities from the `setup/fake_emails`\n   list will be used.\n\n```shell\nsh scripts/setup/manage_ids.sh\n```\n\nWith n=100 it should take 1-2 minutes to complete. By then your output should\nlook like this:\n\n```shell\nUsing existing project with ID .....\nImported 100/100 identities.\nVerified that all identities got created.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fory%2Fsummit-platform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fory%2Fsummit-platform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fory%2Fsummit-platform/lists"}