mirror of
https://github.com/TeamWiseFlow/wiseflow.git
synced 2025-01-23 10:50:25 +08:00
7 lines
173 B
Bash
Executable File
7 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
set -o allexport
|
|
source ../.env
|
|
set +o allexport
|
|
exec pb/pocketbase serve &
|
|
exec python tasks.py &
|
|
exec uvicorn backend:app --reload --host localhost --port 8077 |