{"id":23882673,"url":"https://github.com/kar-dim/reactmealsts_backend","last_synced_at":"2026-02-14T22:34:32.980Z","repository":{"id":292417541,"uuid":"975987702","full_name":"kar-dim/ReactMealsTS_BackEnd","owner":"kar-dim","description":"My implementation of Maximilian's \"React Meals\" (NET/Spring backend) https://www.udemy.com/course/react-the-complete-guide-incl-redux/","archived":false,"fork":false,"pushed_at":"2025-07-24T19:58:18.000Z","size":1603,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T08:13:11.682Z","etag":null,"topics":["auth0","csharp","dotnet","efcore","hibernate","java","jwt","netcore","spring","sql"],"latest_commit_sha":null,"homepage":"","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/kar-dim.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-01T09:15:08.000Z","updated_at":"2025-07-24T19:58:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"229b0876-e1fb-413a-bbec-3e3aab9a5aad","html_url":"https://github.com/kar-dim/ReactMealsTS_BackEnd","commit_stats":null,"previous_names":["kar-dim/reactmealsts_backend"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kar-dim/ReactMealsTS_BackEnd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kar-dim%2FReactMealsTS_BackEnd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kar-dim%2FReactMealsTS_BackEnd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kar-dim%2FReactMealsTS_BackEnd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kar-dim%2FReactMealsTS_BackEnd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kar-dim","download_url":"https://codeload.github.com/kar-dim/ReactMealsTS_BackEnd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kar-dim%2FReactMealsTS_BackEnd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29458903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T21:29:27.764Z","status":"ssl_error","status_checked_at":"2026-02-14T21:28:11.111Z","response_time":53,"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":["auth0","csharp","dotnet","efcore","hibernate","java","jwt","netcore","spring","sql"],"created_at":"2025-01-04T02:56:56.954Z","updated_at":"2026-02-14T22:34:32.963Z","avatar_url":"https://github.com/kar-dim.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ReactMealsTS_BackEnd\n\nThis repository contains the **backend** implementation (in both .NET and Java) for my custom version of [Maximilian Schwarzmüller’s React Meals](https://www.udemy.com/course/react-the-complete-guide-incl-redux/) project (as of 2023).\n\n**Frontend repo**: [ReactMealsTS_FrontEnd](https://github.com/kar-dim/ReactMealsTS_FrontEnd)\n\n---\n\n## Features\n\n- **NGROK** support for secure HTTPS tunneling during development.\n- **EF Core** with SQL Server for database access and persistence (.NET version).\n- **Auth0 Integration** for authentication and authorization:\n  - User registration and login\n  - Claims and policies\n  - M2M (machine-to-machine) access tokens\n\n---\n\n## Technologies\n\n### 🔹 .NET Core (default)\n\n- Uses EF Core and SQL Server.\n- Auth0 secret must stored in a plain text file `m2m_secret.txt` at the root of the project (should contain ONLY the Auth0 M2M client secret value).\n\n### 🔸 Java Spring Boot (branch: `spring`)\n\n- Uses Spring Boot with JPA (Hibernate) + HikariCP, by default connects to the same local MS SQL Server as the .NET implementation (uses different database).\n- Auth0 secret and its various properties should be stored in a `secret.properties` file.\n\n**Note: for both technologies, the above Auth0 files are excluded from version control for security reasons, they must be created manually**\n\n#### Auth0 Configuration (`secret.properties`) for Spring implementation\n\nPlace this file at:\n\n```\nC:\\Users\\{YourUsername}\\.auth0\n```\n\nAnd define the following properties:\n\n```properties\nauth0.domain=...\nauth0.audience=...\nauth0.m2maudience=...\nauth0.m2m_clientid=...\nauth0.m2m_clientsecret=...\n```\n\n---\n\n## Getting Started\n\n1. Clone this repository.\n2. Checkout the appropriate branch (`master` for .NET or `spring` for Java).\n3. Configure your Auth0 secrets as described above.\n4. Start the backend server.\n5. Launch the frontend described at [ReactMealsTS_FrontEnd](https://github.com/kar-dim/ReactMealsTS_FrontEnd).\n\n---\n\n## Notes\n\n- Do **not** commit any secret files (like `secret.properties` or `m2m_secret.txt`) to version control.\n- NGROK can be used for secure HTTPS development tunnel.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkar-dim%2Freactmealsts_backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkar-dim%2Freactmealsts_backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkar-dim%2Freactmealsts_backend/lists"}