{"id":23983426,"url":"https://github.com/marinatanasov/appbrix","last_synced_at":"2025-10-06T02:47:43.238Z","repository":{"id":40832955,"uuid":"42395179","full_name":"MarinAtanasov/AppBrix","owner":"MarinAtanasov","description":"AppBrix is a way of thinking about and building scalable modular applications.","archived":false,"fork":false,"pushed_at":"2025-04-05T16:36:37.000Z","size":2163,"stargazers_count":8,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-05T17:30:26.563Z","etag":null,"topics":["appbrix","asp-net-core","aspnet-core","aspnetcore","dotnet","dotnet-core","framework","net-core","net-standard","netcore","netstandard"],"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/MarinAtanasov.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}},"created_at":"2015-09-13T12:35:24.000Z","updated_at":"2025-04-05T16:36:41.000Z","dependencies_parsed_at":"2024-02-13T21:26:34.724Z","dependency_job_id":"56b672b1-cbc7-445f-b709-18beeeac946c","html_url":"https://github.com/MarinAtanasov/AppBrix","commit_stats":{"total_commits":589,"total_committers":5,"mean_commits":117.8,"dds":0.04244482173174868,"last_synced_commit":"184c720f12ea78f4d04bb361991f76646832af45"},"previous_names":["marinatanasov/appbrix.netcore"],"tags_count":58,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarinAtanasov%2FAppBrix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarinAtanasov%2FAppBrix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarinAtanasov%2FAppBrix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarinAtanasov%2FAppBrix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarinAtanasov","download_url":"https://codeload.github.com/MarinAtanasov/AppBrix/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248837287,"owners_count":21169374,"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":["appbrix","asp-net-core","aspnet-core","aspnetcore","dotnet","dotnet-core","framework","net-core","net-standard","netcore","netstandard"],"created_at":"2025-01-07T12:16:47.768Z","updated_at":"2025-10-06T02:47:38.167Z","avatar_url":"https://github.com/MarinAtanasov.png","language":"C#","readme":"# AppBrix\n[![Build](https://github.com/MarinAtanasov/AppBrix/actions/workflows/build.yml/badge.svg)](https://github.com/MarinAtanasov/AppBrix/actions/workflows/build.yml)\n[![GitHub Issues](https://img.shields.io/github/issues/MarinAtanasov/AppBrix.svg?style=flat\u0026logo=github\u0026label=Issues)](https://github.com/MarinAtanasov/AppBrix/issues)\n[![Code Size](https://img.shields.io/github/languages/code-size/MarinAtanasov/AppBrix.svg?style=flat\u0026logo=github\u0026label=Code)](https://github.com/MarinAtanasov/AppBrix)\n[![Repo Size](https://img.shields.io/github/repo-size/MarinAtanasov/AppBrix.svg?style=flat\u0026logo=github\u0026label=Repo)](https://github.com/MarinAtanasov/AppBrix)\n[![NuGet Package](https://img.shields.io/nuget/v/AppBrix.svg?style=flat\u0026logo=nuget\u0026color=success\u0026label=Nuget)](https://www.nuget.org/packages?q=Owner%3Amarin.atanasov.bg+Tags%3AAppBrix)\n[![NuGet Downloads](https://img.shields.io/nuget/dt/AppBrix.svg?style=flat\u0026logo=nuget\u0026label=Downloads)](https://www.nuget.org/packages?q=Owner%3Amarin.atanasov.bg+Tags%3AAppBrix)\n\nAppBrix is a way of thinking about and building scalable modular applications.\n\nThis framework is using the latest version of [.NET](https://dotnet.microsoft.com/download).\n\nAppBrix has been created with the following priorities:\n* Everything should be testable.\n* Interfaces should be easy to understand and use.\n* Every part of the framework should be easily replaceable without changing the original source code.\n\n## Setup\n```Bash\n# Clone project locally.\ngit clone git@github.com:MarinAtanasov/AppBrix.git\n# Go to project root directory.\ncd AppBrix\n# Restore nuget dependencies and build the solution.\ndotnet build\n```\n\n## Run Tests\nBy default, tests are using MSTest, but NUnit and Xunit can be used instead.\n* Using [Visual Studio](https://visualstudio.microsoft.com/), Test Explorer must be opened before building test projects in order to discover the tests.\n* Using [JetBrains Rider](https://www.jetbrains.com/rider/), they can be run with right click on *Tests* solution folder and selecting *Run Unit Tests*.\n* Using [dotnet test](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-test), while in the project's root folder:\n```Bash\ndotnet test --filter \"Category=Functional|TestCategory=Functional\" --nologo --verbosity minimal\n```\n* Using [PowerShell](https://github.com/PowerShell/PowerShell), while in the project's root folder:\n```Powershell\n# You can add -Build to restore dependencies and build the solution.\n# You can add -Release to use the Release configuration instead of Debug.\n# Run functional tests (default). Add -Parallel for parallel execution.\n./Test.ps1 -tests Functional  # ./Test.ps1\n# Run performance tests.\n./Test.ps1 -tests Performance  # ./Test.ps1 p\n# Run all tests.\n./Test.ps1 -tests All  # ./Test.ps1 a\n```\n\n## Switch Test Runners\nThere are ready configuration for each test runner inside _/Tests/Directory.Build.props_.\n\nIf you wish to switch to a different runner, open the file and:\n1. Comment out the _ItemGroup_ for the current provider.\n2. Uncomment the _ItemGroup_ for the desired provider.\n3. Rebuild the solution. If the rebuild isn't enough, run `./Clean.ps1` and then rebuild.\n\n## Publish Packages\nPackaging and publishing of a new version of all projects can be done using PowerShell.\nIt requires Nuget CLI to be set up locally with account API key.\n```Powershell\n./Publish.ps1\n```\n\n## Sample Applications\nAppBrix.ConsoleApp is a simple console application which uses the framework.\n\nAppBrix.WebApp is a simple web application which uses the framework.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarinatanasov%2Fappbrix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarinatanasov%2Fappbrix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarinatanasov%2Fappbrix/lists"}