{"id":19196750,"url":"https://github.com/sajanv88/abp-single-layer-demo","last_synced_at":"2026-04-18T10:38:43.868Z","repository":{"id":222980885,"uuid":"758881839","full_name":"sajanv88/Abp-single-layer-demo","owner":"sajanv88","description":"Single layer ABP Framework application demo template","archived":false,"fork":false,"pushed_at":"2025-01-15T11:27:06.000Z","size":328,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-23T01:55:53.788Z","etag":null,"topics":["abp-framework","dotnet-core"],"latest_commit_sha":null,"homepage":"","language":"C#","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/sajanv88.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-02-17T11:03:46.000Z","updated_at":"2025-01-15T11:27:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"f0483b70-5440-484b-98ad-4652e438f4f5","html_url":"https://github.com/sajanv88/Abp-single-layer-demo","commit_stats":null,"previous_names":["sajanv88/abp-single-layer-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sajanv88/Abp-single-layer-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sajanv88%2FAbp-single-layer-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sajanv88%2FAbp-single-layer-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sajanv88%2FAbp-single-layer-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sajanv88%2FAbp-single-layer-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sajanv88","download_url":"https://codeload.github.com/sajanv88/Abp-single-layer-demo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sajanv88%2FAbp-single-layer-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272100683,"owners_count":24873442,"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","status":"online","status_checked_at":"2025-08-25T02:00:12.092Z","response_time":1107,"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":["abp-framework","dotnet-core"],"created_at":"2024-11-09T12:14:25.540Z","updated_at":"2026-04-18T10:38:38.840Z","avatar_url":"https://github.com/sajanv88.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sajan.Abpvue\n\n## About this solution\n\nThis is a minimalist, non-layered startup solution with the ABP Framework. All the fundamental ABP modules are already installed. \n\n### Pre-requirements\n\n* [.NET 8.0+ SDK](https://dotnet.microsoft.com/download/dotnet)\n* [Node v18 or 20](https://nodejs.org/en)\n\n### Configurations\n\nThe solution comes with a default configuration that works out of the box. However, you may consider to change the following configuration before running your solution:\n\n* Check the `ConnectionStrings` in `appsettings.json` files under the `Sajan.Abpvue` project and change it if you need.\n\n### Before running the application\n\n#### Generating a Signing Certificate\n\nIn the production environment, you need to use a production signing certificate. ABP Framework sets up signing and encryption certificates in your application and expects an `openiddict.pfx` file in your application.\n\nThis certificate is already generated by ABP CLI, so most of the time you don't need to generate it yourself. However, if you need to generate a certificate, you can use the following command:\n\n```bash\ndotnet dev-certs https -v -ep openiddict.pfx -p 55661a8c-2479-48aa-a013-260f9632aaf8\n```\n\n\u003e `55661a8c-2479-48aa-a013-260f9632aaf8` is the password of the certificate, you can change it to any password you want.\n\nIt is recommended to use **two** RSA certificates, distinct from the certificate(s) used for HTTPS: one for encryption, one for signing.\n\nFor more information, please refer to: https://documentation.openiddict.com/configuration/encryption-and-signing-credentials.html#registering-a-certificate-recommended-for-production-ready-scenarios\n\n\u003e Also, see the [Configuring OpenIddict](https://docs.abp.io/en/abp/latest/Deployment/Configuring-OpenIddict#production-environment) documentation for more information.\n\n#### Install Client-Side Libraries\n\nRun the following command in the directory of your final application:\n\n```bash\nabp install-libs\n```\n\n\u003e This command installs all NPM packages for MVC/Razor Pages and Blazor Server UIs and this command is already run by the ABP CLI, so most of the time you don't need to run this command manually.\n\n### How to Run\n\nThe application needs to connect to a database. Run the following command in the `Sajan.Abpvue` directory to migrate the database and seed the initial data:\n\n````bash\ndotnet run --migrate-database\n````\n\nThis command will create and seed the initial database. Then you can run the application with any IDE that supports .NET.\n\n### Deploying the application\n\nDeploying an ABP application is not different than deploying any .NET or ASP.NET Core application. However, there are some topics that you should care about when you are deploying your applications. You can check ABP's [Deployment documentation](https://docs.abp.io/en/abp/latest/Deployment/Index) before deploying your application.\n\n### Additional resources\n\nYou can see the following resources to learn more about your solution and the ABP Framework:\n\n* [Application (Single Layer) Startup Template](https://docs.abp.io/en/abp/latest/Startup-Templates/Application-Single-Layer)\n* [LeptonX Lite MVC UI](https://docs.abp.io/en/abp/latest/Themes/LeptonXLite/AspNetCore)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsajanv88%2Fabp-single-layer-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsajanv88%2Fabp-single-layer-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsajanv88%2Fabp-single-layer-demo/lists"}