9 lines
124 B
Bash
9 lines
124 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
base=$(dirname "$(readlink -f "$0")")
|
||
|
cd "${base}"
|
||
|
|
||
|
exec ./venv/bin/hypercorn -k trio capport.api "$@"
|