9 lines
100 B
Bash
Executable file
9 lines
100 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
here=$(dirname $0)
|
|
. $here/.venv/bin/activate
|
|
cd $here/src
|
|
exec python server.py
|