{"id":15003009,"url":"https://github.com/jioo/dotnet-core-attendance-system","last_synced_at":"2025-10-30T09:31:21.197Z","repository":{"id":39560066,"uuid":"139139486","full_name":"jioo/Dotnet-Core-Attendance-System","owner":"jioo","description":"Attendance Web Application using .NET Core (CQRS pattern) \u0026 Vue.js","archived":false,"fork":false,"pushed_at":"2022-12-09T12:04:15.000Z","size":3740,"stargazers_count":36,"open_issues_count":25,"forks_count":16,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-02T07:51:14.334Z","etag":null,"topics":["axios-vue","circle-ci","continuous-integration","cqrs-pattern","dotnet-core2","integration-tests","mssql-database","signalr-core","vuecli","vuejs","vuetify"],"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/jioo.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}},"created_at":"2018-06-29T11:04:26.000Z","updated_at":"2024-11-24T23:36:52.000Z","dependencies_parsed_at":"2023-01-25T16:00:45.209Z","dependency_job_id":null,"html_url":"https://github.com/jioo/Dotnet-Core-Attendance-System","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jioo%2FDotnet-Core-Attendance-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jioo%2FDotnet-Core-Attendance-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jioo%2FDotnet-Core-Attendance-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jioo%2FDotnet-Core-Attendance-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jioo","download_url":"https://codeload.github.com/jioo/Dotnet-Core-Attendance-System/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238950485,"owners_count":19557533,"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":["axios-vue","circle-ci","continuous-integration","cqrs-pattern","dotnet-core2","integration-tests","mssql-database","signalr-core","vuecli","vuejs","vuetify"],"created_at":"2024-09-24T18:54:55.036Z","updated_at":"2025-10-30T09:31:15.726Z","avatar_url":"https://github.com/jioo.png","language":"C#","funding_links":["http://paypal.me/jjquiazon"],"categories":[],"sub_categories":[],"readme":"## Dotnet-Core-Attendance-System ##\n\nAttendance Web Application using .NET Core (CQRS pattern) \u0026 Vue.js\n\n[![CircleCI](https://circleci.com/gh/jioo/Dotnet-Core-Attendance-System.svg?style=svg)](https://circleci.com/gh/jioo/Dotnet-Core-Attendance-System) [![paypal](https://img.shields.io/badge/paypal-donate-green.svg)](http://paypal.me/jjquiazon)\n\n### Prerequisite ###\n1. Install .Net Core 2.2 SDK [https://dotnet.microsoft.com/download](https://dotnet.microsoft.com/download)\n2. Install Node.js [https://nodejs.org/en/download/](https://nodejs.org/en/download/)\n3. Any relational database provider. [https://docs.microsoft.com/en-us/ef/core/providers/](https://docs.microsoft.com/en-us/ef/core/providers/)\n    - Create your database and configure the connection string in [appsettings.json](https://github.com/jioo/Dotnet-Core-Attendance-System/blob/master/src/Api/appsettings.json#L9)\n    - Update DbContext option in [Startup.cs](https://github.com/jioo/Dotnet-Core-Attendance-System/blob/master/src/Api/Startup.cs#L55) _(Skip these if you're using MSSQL)_\n\n### Build ###\n```bash\n# Restore packages\ndotnet restore\n\n# Install Cake global\ndotnet tool install -g Cake.Tool\n\n# Run build.cake\n# - this task will build Api \u0026 Test .net core project\n# and install packages in Vue client\ndotnet-cake build.cake\n```\n\n### Run ###\n- Api project\n```bash\ncd .\\src\\Api\\\n\n# Run \ndotnet run\n\n# or Run with file watcher\ndotnet watch run\n```\n- Vue client\n    - Use login: `admin` and password: `123456`\n```bash\ncd .\\src\\Client\\\n\n# Start dev w/ hot module replacement\nnpm run serve\n```\n- Integration Tests\n```bash\ncd .\\tests\\Api\\\n\n# Run tests \ndotnet test\n\n# or Run with file watcher\ndotnet watch test\n```\n\n### Local Publish ###\n```bash\n# Publish .net core api and vue in `/dist` folder\ndotnet-cake build.cake --task=\"Publish\"\n```\n\n### Features ###\n\n* Fully separated Backend and Frontend\n* Swagger for api documentation (URL: http://localhost:5000/swagger/index.html)\n* CQRS Pattern (Command Query Responsibility Segregation)\n* Authentication based on Identity Framework \u0026 JWT Bearer\n* Integration Tests with XUnit\n* Material design\n* Realtime update on employee logs\n* ![Realtime Demo](realtime-demo.gif)\n\n\n### Includes ###\n\n* [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/) open-source general-purpose development platform maintained by Microsoft. \n* [MediatR](https://github.com/jbogard/MediatR) Simple, unambitious mediator implementation in .NET\n* [Vue.js](https://vuejs.org/) The Progressive JavaScript Framework.\n* [Vuetify](https://vuetifyjs.com/en/) Material design component framework for Vue.js.\n\n### Online Resources ###\n\n* [https://docs.microsoft.com/en-us/aspnet/core](https://docs.microsoft.com/en-us/aspnet/core)\n* [https://vuejs.org/](https://vuejs.org/)\n* [https://vuetifyjs.com](https://vuetifyjs.com)\n* [https://github.com/gothinkster/aspnetcore-realworld-example-app](https://github.com/gothinkster/aspnetcore-realworld-example-app)\n* [https://medium.com/@ozgurgul/asp-net-core-2-0-webapi-jwt-authentication-with-identity-mysql-3698eeba6ff8](https://medium.com/@ozgurgul/asp-net-core-2-0-webapi-jwt-authentication-with-identity-mysql-3698eeba6ff8)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjioo%2Fdotnet-core-attendance-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjioo%2Fdotnet-core-attendance-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjioo%2Fdotnet-core-attendance-system/lists"}