Before publishing the application, ensure that all the configuration settings, which are required to run the application in an ePortal Web Cluster are made in the application configuration files.
Note: You must configure the hostname to match the back-end server name that is configured in the ePortal Manager.
ePortal .NET Core projects allow you to configure the application settings for different environments.
When you deploy an application to the runtime platform, the application uses configuration settings from the <DatasourceProjectName>.json file.
When you test an application locally with a debug configuration, the application uses configuration settings from the <DatasourceProjectName>.json file; however, any settings specific to the local test environment contained in the <DatasourceProjectName>.development.json file override the values in the <DatasourceProjectName>.json file.
For example, if the files “<DatasourceProjectName>.json” and “<DatasourceProjectName>.Development.json” are the configuration files,
The production configuration values are placed in the <DatasourceProjectName>.json file.
The development values are placed in the <DatasourceProjectName>.Development.json file.
Where, <DatasourceProjectName> is the name of the project.