5 lines
169 B
Bash
Executable File
5 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
pkill -f "uvicorn hoa_app.main:app"
|
|
sleep 5
|
|
cd backend/backend && source venv/bin/activate && uvicorn hoa_app.main:app --reload --host 0.0.0.0 --port 8000 &
|