9 lines
161 B
Bash
Executable File
9 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
source ${BASE_DIR}/myenv.sh
|
|
|
|
cd $BASE_DIR/cockpit
|
|
|
|
uvicorn web:app
|