Stripped personal data from development repository
Samo Penic
2019-02-20 83c3f647c35477564b77cbc5b36d37d793d5442a
commit | author | age
83c3f6 1 #!/bin/bash
SP 2
3 # Start the first process
4 /etc/init.d/nginx start
5 status=$?
6 if [ $status -ne 0 ]; then
7   echo "Failed to start my_first_process: $status"
8   exit $status
9 fi
10
11 gunicorn --chdir /app --bind :8888 --error-log /var/log/sizif/gnunicorn-error.log --capture-output True aoi.wsgi:application