8 lines
336 B
Bash
Executable file
8 lines
336 B
Bash
Executable file
if [[ "$APP_NAME" == "cara-webservice" ]]; then
|
|
echo "Starting the cara webservice"
|
|
python -m cara.apps.calculator --no-debug
|
|
elif [[ "$APP_NAME" == "cara-voila" ]]; then
|
|
echo "Starting the voila service"
|
|
voila app/ --port=8080 --no-browser --base_url=/voila-server/ --Voila.tornado_settings="{'allow_origin': '*'}"
|
|
fi
|
|
|