From 846efbab0c56b6f4c49a7063bd8c50122f94ebfc Mon Sep 17 00:00:00 2001
From: David Trattnig <david.trattnig@o94.at>
Date: Thu, 10 Sep 2020 13:52:24 +0200
Subject: [PATCH] Updated description of commands.

---
 run.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/run.sh b/run.sh
index e3e06bf8..2d50f25e 100755
--- a/run.sh
+++ b/run.sh
@@ -47,7 +47,7 @@ if [[ $docker == "false" ]]; then
         echo "Next you need to create the configuration, run fixtues, migrations and create a superuser."
 	fi
 
-	### Runs the project in development mode (Virtualenv) ###
+	### Runs Steering in development mode (Virtualenv) ###
 
 	if [[ $mode == "dev" ]]; then
 		echo "Activating Python Environment"
@@ -55,7 +55,7 @@ if [[ $docker == "false" ]]; then
         python manage.py runserver
 	fi
 
-	### Runs the project in production mode (Production) ###
+	### Runs Steering in production mode (WSGI) ###
 
 	if [[ $mode == "prod" ]]; then
 		echo "!!! Not yet implemented !!!"
@@ -76,7 +76,7 @@ fi
 if [[ $docker == "true" ]]; then
 	BASE_D=$(realpath "${BASH_SOURCE%/*}/")
 
-	### Runs Engine API using Gunicorn ###
+	### Runs Steering from Docker ###
 
 	if [[ $mode == "serve" ]]; then
 		exec sudo docker run --rm -it \
-- 
GitLab