{"id":15291864,"url":"https://github.com/sahinmeric/register_page","last_synced_at":"2026-04-30T11:36:44.393Z","repository":{"id":254514937,"uuid":"846776370","full_name":"sahinmeric/register_page","owner":"sahinmeric","description":"A full-stack application for registering MIPYMEs, focusing on user validation, authentication, and UX. Built with Angular, .NET 6, and deployed on Netlify and Azure.","archived":false,"fork":false,"pushed_at":"2024-08-26T15:51:18.000Z","size":1259,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-09T12:52:47.048Z","etag":null,"topics":["angular","azure","dotnet","full-stack","jwt","netlify"],"latest_commit_sha":null,"homepage":"https://celebrated-bubblegum-b0c618.netlify.app/","language":"TypeScript","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/sahinmeric.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}},"created_at":"2024-08-23T23:55:10.000Z","updated_at":"2024-08-27T01:26:01.000Z","dependencies_parsed_at":"2024-08-24T00:53:17.569Z","dependency_job_id":"0473d03a-59fa-4dcd-893c-3a17000dd16b","html_url":"https://github.com/sahinmeric/register_page","commit_stats":null,"previous_names":["sahinmeric/register_page"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sahinmeric/register_page","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahinmeric%2Fregister_page","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahinmeric%2Fregister_page/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahinmeric%2Fregister_page/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahinmeric%2Fregister_page/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sahinmeric","download_url":"https://codeload.github.com/sahinmeric/register_page/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahinmeric%2Fregister_page/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32463892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"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":["angular","azure","dotnet","full-stack","jwt","netlify"],"created_at":"2024-09-30T16:14:51.720Z","updated_at":"2026-04-30T11:36:39.379Z","avatar_url":"https://github.com/sahinmeric.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Register Page Application\n\nThis repository contains a full-stack web application consisting of a frontend built with Angular and a backend built with .NET. The application allows users to register with their company details, including NIT, email, phone number, and password. Upon successful registration, a JWT token is generated and stored in session storage for subsequent authentication.\n\n## Technologies Used\n\n- **Frontend:**\n  - Angular\n  - TypeScript\n  - Tailwind CSS\n  - Angular Material for UI components\n  - Netlify for deployment\n\n- **Backend:**\n  - .NET 8.0\n  - C#\n  - JWT Authentication\n  - CORS configuration\n  - Azure App Service for deployment\n\n## Features\n\n- User registration with form validation.\n- JWT token generation upon successful registration.\n- Secure API endpoints protected by JWT authentication.\n- Responsive design using Tailwind CSS.\n- Deployed on Netlify (frontend) and Azure App Service (backend).\n\n## Prerequisites\n\n- **Node.js** (for frontend development)\n- **.NET SDK 8.0** (for backend development)\n- **Angular CLI** (for managing Angular projects)\n\n## Setting Up the Frontend\n\n1. Navigate to the `frontend` directory:\n\n    ```bash\n    cd front-end\n    ```\n\n2. Install the required packages:\n\n    ```bash\n    npm install\n    ```\n\n3. Run the Angular application:\n\n    ```bash\n    ng serve\n    ```\n\n    The frontend should now be running on `http://localhost:4200`.\n\n## Setting Up the Backend\n\n1. Navigate to the `backend` directory:\n\n    ```bash\n    cd backend/RegisterAPI\n    ```\n\n2. Restore the required packages:\n\n    ```bash\n    dotnet restore\n    ```\n\n3. Build the application:\n\n    ```bash\n    dotnet build\n    ```\n\n4. Run the application:\n\n    ```bash\n    dotnet run\n    ```\n\n    The backend should now be running on `https://localhost:7101`.\n\n## Running the Application Locally\n\n- **Frontend**: The Angular application runs on `http://localhost:4200` by default.\n- **Backend**: The .NET API runs on `https://localhost:7101` by default.\n\nTo test the full functionality, ensure both the frontend and backend are running simultaneously.\n\n## Deployment\n\n### Frontend Deployment (Netlify)\n\n1. Build the Angular application:\n\n    ```bash\n    ng build --configuration production\n    ```\n\n2. Deploy the contents of the `dist` folder to Netlify using the Netlify CLI or web interface.\n\n### Backend Deployment (Azure App Service)\n\n1. Create a zip file of the contents inside the `publish` folder.\n2. Deploy the zip file using the Azure CLI:\n\n    ```bash\n    az webapp deploy --resource-group MyResourceGroup --name MyDotNetApp23423 --src-path publish.zip\n    ```\n\nEnsure CORS is correctly configured on the backend to allow requests from the frontend URL.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsahinmeric%2Fregister_page","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsahinmeric%2Fregister_page","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsahinmeric%2Fregister_page/lists"}