12 lines
151 B
Bash
Executable File
12 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
BASE_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
cd $BASE_DIR
|
|
|
|
source myenv.sh
|
|
|
|
cd poc
|
|
set +ex
|
|
open http://127.0.0.1:8001
|
|
python server.py
|