<%#
 Copyright 2019-2025 the original author or authors from the JHipster project.
 This file is part of the JHipster project, see https://www.jhipster.tech/
 for more information.
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
      http://www.apache.org/licenses/LICENSE-2.0
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
-%>
#!/bin/bash

echo "Starting the application..."

# if $PORT is set in the environment, set ASPNETCORE_URLS to "http://*:$PORT"
if [ -n "$PORT" ]; then
    echo "Setting ASPNETCORE_URLS with the PORT environment variable..."
    export ASPNETCORE_URLS=http://*:$PORT
    echo "ASPNETCORE_URLS: $ASPNETCORE_URLS"
fi

if [ "$INCLUDE_BLAZOR" = "true" ];  then
    # replace blazor server url if INCLUDE_BLAZOR is true
    echo "Replacing blazor server url in appsettings.json with the ServerUrl environment variable..."
    sed -i "/ServerUrl/c\   "\"ServerUrl"\" : "\"$ServerUrl"\"," wwwroot/appsettings.json
fi

# run the dotnet app
dotnet <%= pascalizedBaseName %>.dll
