11 lines
157 B
Bash
11 lines
157 B
Bash
#!/bin/bash
|
|
|
|
CORES=$(nproc)
|
|
WORKERS=$((2 * CORES + 1))
|
|
|
|
cd /app/frontend && yarn dev &
|
|
cd /app && python manage.py runserver 0.0.0.0:8000 &
|
|
|
|
wait -n
|
|
|
|
exit $? |