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