I HAVE IMPLEMENTED THE CONCEPT HERE: abp_plugin_with_ui
This repository contains of a ASP.net Core 2.0 Web application project and three angular applications, which located in MultipleApp/main, MultipleApp/sub-one, MultipleApp/sub-two.
- Goal: To develop multiple modules of a project parallelly without depending on each other.
- Method: Creating multiple angular cli app which each app correspond to a module.
- Clone this repository
git clone https://github.com/chanjunweimy/angular-multiple-app.git
cd angular-multiple-app/MultipleApp
npm install
npm run build-all
dotnet run
- Open
http://localhost:52440
in a browser.- MultipleApp/main:
http://localhost:52440
- MultipleApp/sub-one:
http://localhost:52440/sub-one
- MultipleApp/sub-two:
http://localhost:52440/sub-two
- MultipleApp/main:
The concept is implemented in abp_plugin_with_ui. Feel free to give comment! Thanks!