Browse Source

Remove Solution Runner section from adding new gateway/app/service doc

pull/20693/head
Yunus Emre Kalkan 1 year ago
parent
commit
345bf92e6d
  1. 6
      docs/en/solution-templates/microservice/adding-new-api-gateways.md
  2. 6
      docs/en/solution-templates/microservice/adding-new-applications.md
  3. 6
      docs/en/solution-templates/microservice/adding-new-microservices.md

6
docs/en/solution-templates/microservice/adding-new-api-gateways.md

@ -155,12 +155,6 @@ We should configure the AuthServer for **CORS** and **RedirectAllowedUrls**.
}
```
### Add the New Gateway to the Solution Runner
We should add the new gateway to the solution runner [profile](../../studio/running-applications.md#profile) for running applications in the ABP Studio. You can follow the steps explained in the [Solution Runner](../../studio/running-applications.md#c-application) document to add the new gateway to the solution runner profile. Afterwards, you can start the new gateway by selecting it in the solution runner.
![public-gateway-solution-runner](images/public-gateway-solution-runner.png)
## Creating Helm Chart for the New Gateway
If you want to deploy the new gateway to Kubernetes, you should create a Helm chart for the new application.

6
docs/en/solution-templates/microservice/adding-new-applications.md

@ -120,12 +120,6 @@ Add the new application URL to the `appsettings.json` file in the `Identity` ser
}
```
### Add the New Application to the Solution Runner
We should add the new application to the solution runner [profile](../../studio/running-applications.md#profile) for running applications in the ABP Studio. You can follow the steps explained in the [Solution Runner](../../studio/running-applications.md#c-application) document to add the new application to the solution runner profile. Afterwards, you can start the new application by selecting it in the solution runner.
![web-public-solution-runner](images/web-public-solution-runner.png)
## Docker Configuration for Prometheus
If you want to monitor the new application with Prometheus when you debug the solution, you should add the new application to the `prometheus.yml` file in the `etc/docker/prometheus` folder. You can copy the configurations from the existing applications and modify them according to the new application. Below is an example of the `prometheus.yml` file for the `WebPublic` application.

6
docs/en/solution-templates/microservice/adding-new-microservices.md

@ -347,12 +347,6 @@ const oAuthConfig = {
};
```
### Add the New Microservice to the Solution Runner
We should add the new microservice to the solution runner [profile](../../studio/running-applications.md#profile) for running applications in the ABP Studio. You can follow the steps explained in the [Solution Runner](../../studio/running-applications.md#c-application) document to add the new microservice to the solution runner profile. Afterwards, you can start the new microservice by selecting it in the solution runner.
![product-service-solution-runner](images/product-service-solution-runner.png)
## Docker Configuration for Prometheus
If you want to monitor the new microservice with Prometheus when you debug the solution, you should add the new microservice to the `prometheus.yml` file in the `etc/docker/prometheus` folder. You can copy the configurations from the existing microservices and modify them according to the new microservice. Below is an example of the `prometheus.yml` file for the `Product` microservice.

Loading…
Cancel
Save