qinling/runtimes/python3/custom-entrypoint.sh
heychirag b3196b27a2 python3 runtime
Created a new runtime for python3 taking clues from the available python2
runtime. The runtime has been tested on various test functions.

Change-Id: Iccf3360ea5a389a7dfa2b091979c5713062fa73a
Task: 22199
Story: 2002590
2018-08-01 14:25:47 +02:00

7 lines
276 B
Bash

#!/usr/bin/env bash
# This is expected to run as root.
uwsgi --http :9090 --uid qinling --wsgi-file server.py --callable app --master --processes 5 --threads 1 &
uwsgi --http 127.0.0.1:9092 --uid root --wsgi-file cglimit.py --callable app --master --processes 1 --threads 1