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