{"id":27840223,"url":"https://github.com/rzavalik/codetraining","last_synced_at":"2026-02-27T00:01:18.519Z","repository":{"id":287954091,"uuid":"962866012","full_name":"rzavalik/codetraining","owner":"rzavalik","description":"A simple calculator app showcasing technologies, techniques, and best practices.","archived":false,"fork":false,"pushed_at":"2025-04-28T23:11:34.000Z","size":1114,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-11T07:35:55.565Z","etag":null,"topics":["azure","bdd","dotnet-core","moq","playwright","shouldly","tdd","test"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rzavalik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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-04-08T19:45:08.000Z","updated_at":"2025-04-28T23:11:37.000Z","dependencies_parsed_at":"2025-05-03T03:44:45.218Z","dependency_job_id":"368d6189-ef06-4913-a69b-0506922bfad1","html_url":"https://github.com/rzavalik/codetraining","commit_stats":null,"previous_names":["rzavalik/codetraining"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rzavalik/codetraining","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzavalik%2Fcodetraining","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzavalik%2Fcodetraining/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzavalik%2Fcodetraining/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzavalik%2Fcodetraining/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rzavalik","download_url":"https://codeload.github.com/rzavalik/codetraining/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzavalik%2Fcodetraining/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29878265,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T23:51:21.483Z","status":"ssl_error","status_checked_at":"2026-02-26T23:50:46.793Z","response_time":89,"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":["azure","bdd","dotnet-core","moq","playwright","shouldly","tdd","test"],"created_at":"2025-05-03T03:44:32.639Z","updated_at":"2026-02-27T00:01:18.483Z","avatar_url":"https://github.com/rzavalik.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# Calculator App\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)\n[![.NET](https://img.shields.io/badge/.NET-8.0-blue.svg)](https://dotnet.microsoft.com/en-us/)\n![Build Status](https://dev.azure.com/zavalik/codetraining/_apis/build/status%2FCI%20for%20Main%20Branch?branchName=main\u0026stageName=BuildTest\u0026jobName=Build%20and%20Test%20.NET%20Projects)\n---\n\n## 📖 Overview\n\n**Calculator App** is a simple calculator application designed to showcase modern development practices including Clean Architecture, Unit Testing, CI/CD automation, and best coding standards using .NET.\n\nThis project serves both as a learning tool and a demonstration of high-quality code organization and delivery workflows.\n\n---\n\n## ✨ Features\n\n- Basic calculator operations (add, subtract, multiply, divide)\n- Clean Architecture structure\n- Full Unit Test coverage\n- Continuous Integration with GitHub Actions\n- Follows best practices for .NET development\n- Extensible for new features\n\n---\n\n## 🚀 Technologies\n\n- [.NET 8.0](https://dotnet.microsoft.com/en-us/)\n- xUnit and Shouldly for testing\n- GitHub Actions for CI/CD\n- Docker support (optional, if you add it later)\n\n---\n\n## ⚡ Getting Started\n\n### Prerequisites\n- [.NET 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)\n- Git\n\n### Running Locally\n```bash\n# Clone the repository\ngit clone https://github.com/rzavalik/codetraining.git\ncd codetraining\n\n# Build and run the application\ndotnet build\ndotnet run --project Calculator.UI\n```\n\n### Running Tests\n```bash\n# Execute unit tests\ndotnet test\n```\n\n---\n\n## 📂 Project Structure\n\n```\nsrc/\n └── Calculator.UI/          # Console UI for the calculator\n └── Calculator.API/          # Web API version (if implemented)\n └── Calculator.Domain/       # Core domain entities and logic\n └── Calculator.Application/  # Application logic and services\n └── Calculator.Tests/        # Unit tests\n```\n\n---\n\n## 🤝 Contributing\n\nWe welcome contributions!\n\nPlease read our [CONTRIBUTING.md](./CONTRIBUTING.md) to learn how to get started.\n\n---\n\n## 📜 License\n\nThis project is licensed under the [GPL-3.0-or-later License](LICENSE).\n\n---\n\n## 🙌 Acknowledgments\n\n- Inspired by clean architecture principles and best practices from the .NET community.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frzavalik%2Fcodetraining","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frzavalik%2Fcodetraining","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frzavalik%2Fcodetraining/lists"}