diff --git a/run.sh b/run.sh index e3e06bf8d52e91d3b003ccdbdef9f47d956144b6..2d50f25e71ed9cdba2db0e96d08692992706628e 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 \