{"id":31107865,"url":"https://github.com/scalekit-inc/dotnet-example-apps","last_synced_at":"2025-09-17T05:59:51.807Z","repository":{"id":315020434,"uuid":"980571032","full_name":"scalekit-inc/dotnet-example-apps","owner":"scalekit-inc","description":".NET example applications - ASP.NET Core SAML and OIDC integration samples","archived":false,"fork":false,"pushed_at":"2025-09-08T06:53:21.000Z","size":15,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-16T09:10:41.951Z","etag":null,"topics":["aspnet-core","csharp","demo","dotnet","examples","oidc","saml","sample-apps","sso"],"latest_commit_sha":null,"homepage":"https://docs.scalekit.com/","language":"C#","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/scalekit-inc.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":"2025-05-09T10:52:01.000Z","updated_at":"2025-09-08T06:53:25.000Z","dependencies_parsed_at":"2025-09-16T09:10:43.613Z","dependency_job_id":"651cf9bc-e678-4045-bd4e-435a00075ae5","html_url":"https://github.com/scalekit-inc/dotnet-example-apps","commit_stats":null,"previous_names":["scalekit-inc/dotnet-example-apps"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/scalekit-inc/dotnet-example-apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalekit-inc%2Fdotnet-example-apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalekit-inc%2Fdotnet-example-apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalekit-inc%2Fdotnet-example-apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalekit-inc%2Fdotnet-example-apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scalekit-inc","download_url":"https://codeload.github.com/scalekit-inc/dotnet-example-apps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalekit-inc%2Fdotnet-example-apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275542865,"owners_count":25483429,"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","status":"online","status_checked_at":"2025-09-17T02:00:09.119Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["aspnet-core","csharp","demo","dotnet","examples","oidc","saml","sample-apps","sso"],"created_at":"2025-09-17T05:59:48.478Z","updated_at":"2025-09-17T05:59:51.798Z","avatar_url":"https://github.com/scalekit-inc.png","language":"C#","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://scalekit.com\" target=\"_blank\" rel=\"noopener noreferrer\"\u003e\n    \u003cpicture\u003e\n      \u003cimg src=\"https://cdn.scalekit.cloud/v1/scalekit-logo-dark.svg\" height=\"64\"\u003e\n    \u003c/picture\u003e\n  \u003c/a\u003e\n  \u003cbr/\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003e\n  Scalekit ASP.NET Example App\n\u003c/h1\u003e\n\n\u003ch4 align=\"center\"\u003e\nScalekit helps you ship Enterprise Auth in days.\n\nThis ASP.NET Core Web API Sample App showcases the Scalekit Official .NET SDK implementation.\n\u003c/h4\u003e\n\n## Prerequisites\n\n- [.NET 8.0 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) or later\n\n## Getting Started\n\n1. [Sign up](https://scalekit.com) for a Scalekit account\n2. Get your `env_url`, `client_id` and `client_secret` from the Scalekit dashboard\n\n## Project Setup\n\n1. Clone the repository:\n```sh\n# Clone the repository along with ReactJS submodule\ngit clone --recursive https://github.com/scalekit-developers/dotnet-example-apps.git\ncd dotnet-example-apps\n```\n\n2. Install .NET dependencies:\n```sh\n# Install Scalekit.SDK package\ndotnet add package Scalekit.SDK\ndotnet add package DotNetEnv\ndotnet restore\n```\n\n3. Add ReactJS submodule for frontend elements:\n```sh\n# Build the ReactJS submodule\ncd web\nnpm run build\n\n# Copy all files from React build folder to ASP.NET Core WebAPI wwwroot folder\ncp -r ./path-to-react-app/build/* ./path-to-aspnetcore-app/wwwroot/\n```\n\n4. Set up environment variables:\n```sh\n# From the root directory\ncp .env.example .env\n```\n\nUpdate `.env` with your Scalekit credentials:\n```ini\nSCALEKIT_ENV_URL=your_env_url\nSCALEKIT_CLIENT_ID=your_client_id\nSCALEKIT_CLIENT_SECRET=your_client_secret\n```\n\n5. Run the application in development mode:\n\n```sh\n# From the root directory\ndotnet run\n\nOpen http://localhost:5125 to view it in the browser.\n```\n\n## Additional Resources\nSee the [Scalekit API docs](https://docs.scalekit.com) for more information about the API and authentication.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscalekit-inc%2Fdotnet-example-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscalekit-inc%2Fdotnet-example-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscalekit-inc%2Fdotnet-example-apps/lists"}