Spaces:
Sleeping
Sleeping
File size: 127 Bytes
8b1e853 |
1 2 3 4 5 6 7 |
#!/bin/bash
cd ./backend
uvicorn app.main:app --host 0.0.0.0 --port 8080 &
cd ../frontend
npm run dev &
tail -f /dev/null
|