{"id":25232106,"url":"https://github.com/mreshboboyev/supabase-dotnet","last_synced_at":"2026-04-26T08:37:48.569Z","repository":{"id":275298032,"uuid":"925677804","full_name":"MrEshboboyev/supabase-dotnet","owner":"MrEshboboyev","description":"An ASP.NET Core backend integrated with Supabase for authentication, database management, and environment-based secret storage.","archived":false,"fork":false,"pushed_at":"2025-02-06T15:25:31.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T21:10:59.091Z","etag":null,"topics":["asp-net-core","backend","environment-variables","supabase","supabase-auth","supabase-database","web-api"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MrEshboboyev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-02-01T13:22:26.000Z","updated_at":"2025-05-01T17:00:29.000Z","dependencies_parsed_at":"2025-06-10T21:08:08.198Z","dependency_job_id":"e4dabf17-9eb9-47b6-bdee-9f9ee9a42a10","html_url":"https://github.com/MrEshboboyev/supabase-dotnet","commit_stats":null,"previous_names":["mreshboboyev/supabase-dotnet"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MrEshboboyev/supabase-dotnet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrEshboboyev%2Fsupabase-dotnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrEshboboyev%2Fsupabase-dotnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrEshboboyev%2Fsupabase-dotnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrEshboboyev%2Fsupabase-dotnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MrEshboboyev","download_url":"https://codeload.github.com/MrEshboboyev/supabase-dotnet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrEshboboyev%2Fsupabase-dotnet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32291217,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T08:29:33.829Z","status":"ssl_error","status_checked_at":"2026-04-26T08:29:18.366Z","response_time":129,"last_error":"SSL_read: 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":["asp-net-core","backend","environment-variables","supabase","supabase-auth","supabase-database","web-api"],"created_at":"2025-02-11T12:55:16.770Z","updated_at":"2026-04-26T08:37:48.564Z","avatar_url":"https://github.com/MrEshboboyev.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Supabase .NET Backend\n\nAn ASP.NET Core backend integrated with Supabase for authentication, database management, and environment-based secret storage.\n\n## 🚀 Features\n- 🔑 **Authentication** – Secure user authentication via Supabase Auth.\n- 📦 **Database Integration** – CRUD operations with Supabase tables.\n- 🔐 **Environment-Based Secret Management** – Store secrets in `.env` locally.\n- ⚡ **ASP.NET Core Backend** – Modern, scalable web API architecture.\n\n## 📌 Prerequisites\nEnsure you have the following installed:\n- [.NET SDK](https://dotnet.microsoft.com/en-us/download)\n- [Supabase Account](https://supabase.com/)\n- PostgreSQL (Optional, if using locally)\n\n## 🛠 Setup \u0026 Installation\n\n1. Clone this repository:\n   ```sh\n   git clone https://github.com/MrEshboboyev/supabase-dotnet.git\n   cd src\n   ```\n\n2. Install dependencies:\n   ```sh\n   dotnet restore\n   ```\n\n3. Create a `.env` file in the project root and add your Supabase credentials:\n   ```ini\n   SUPABASE_URL=https://your-supabase-url.supabase.co\n   SUPABASE_KEY=your-secret-api-key\n   ```\n\n4. Run the application:\n   ```sh\n   dotnet run\n   ```\n\n## 🏗 Project Structure\n```\n📂 supabase-dotnet\n ├── 📂 Controllers   # API Controllers\n ├── 📂 Models        # Database Models\n ├── 📂 Services      # Business Logic\n ├── 📄 appsettings.json  # Configuration\n ├── 📄 .env          # Environment Variables (ignored in Git)\n ├── 📄 Program.cs    # Main Application Entry\nsrc\n📂 SupabaseDemo.Api\n    ├── Properties\n    ├── 📂 Contracts\n    ├── 📂 Controllers  # API Controllers\n    ├── 📂 Extensions\n    ├── 📂 Models       # Database Models\n    ├── 📄 .env         # Environment Variables (ignored in Git)\n    ├── 📄 appsettings.json  # Configuration\n    ├── 📄 Dockerfile\n    └── 📄 Program.cs  # Main Application Entry\n```\n\n## 🤝 Contribution\nContributions are welcome! Feel free to submit issues or pull requests.\n\n## 📜 License\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmreshboboyev%2Fsupabase-dotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmreshboboyev%2Fsupabase-dotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmreshboboyev%2Fsupabase-dotnet/lists"}