aboutsummaryrefslogtreecommitdiff
path: root/ci/container/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/container/run.sh')
-rw-r--r--ci/container/run.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/ci/container/run.sh b/ci/container/run.sh
index c780929..b452f2a 100644
--- a/ci/container/run.sh
+++ b/ci/container/run.sh
@@ -2,6 +2,8 @@
#this script will be invoked by dumb-init in the container on statup and is located at /app
+echo "Generating configuration files"
+
rm -rf config && mkdir config
#substitude all -template files in the config-templates dir and write them to the config dir
@@ -9,7 +11,12 @@ for file in config-templates/*-template.json; do
envsubst < $file > config/$(basename $file -template.json).json
done
+echo "Complete"
+
+echo "Merging your asset files"
cp usr/assets/* plugins/assets/ -rf
+echo "Complete"
#start the server
+echo "Starting the server"
dotnet webserver/VNLib.WebServer.dll --config config/config.json --input-off $SERVER_ARGS \ No newline at end of file