File size: 224 Bytes
5fe2042
3fb51b3
 
5fe2042
3fb51b3
d984dfd
5fe2042
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
API_THREADS_COUNT=${API_THREADS_COUNT:-1}

cd $(dirname $0)/..

python3 init_tasks.py
uwsgi \
--master \
--http 0.0.0.0:63958 \
--wsgi-file main.py \
--callable app \
--processes 1 \
--threads $API_THREADS_COUNT