forked from freeleaps/freeleaps-pub
11 lines
298 B
Bash
Executable File
11 lines
298 B
Bash
Executable File
#!/bin/bash
|
|
BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
|
|
source $BASE_DIR/.dev.env
|
|
|
|
pushd ~/freeleaps/freeleaps2-backend
|
|
source $BASE_DIR/.dev.env
|
|
docker compose -f ~/devbox/docker-compose.dev.yaml up -d
|
|
pkill -f "uvicorn webapi.main:app" || true
|
|
./start_webapi.sh
|
|
popd |