Spaces:
Running
Running
File size: 428 Bytes
adecc9b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
echo "server start"
# Activate the Conda environment
source /root/miniconda3/bin/activate OpenBioMed
python -m uvicorn open_biomed.scripts.run_server:app \
--host 0.0.0.0 \
--port 8082 \
--log-level info > ./tmp/server.log 2>&1 &
python -m uvicorn open_biomed.scripts.run_server_workflow:app \
--host 0.0.0.0 \
--port 8083 \
--log-level info > ./tmp/workflow.log 2>&1 &
tail -f /dev/null |