9 lines
163 B
Bash
Executable File
9 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
base=$(dirname "$(readlink -f "$0")")
|
|
cd "${base}"
|
|
|
|
exec ./venv/bin/hypercorn --config python:capport.api.hypercorn_conf capport.api.app "$@"
|