10 lines
117 B
Bash
10 lines
117 B
Bash
|
#!/bin/bash
|
||
|
set -ex
|
||
|
BASE_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||
|
cd $BASE_DIR
|
||
|
|
||
|
source myenv.sh
|
||
|
|
||
|
cd poc
|
||
|
python server.py
|