bc52096
1
2
3
4
5
6
7
#!/bin/sh # Start the OpenEnv API in the background on port 8000 python3 -m uvicorn origami_server.app:app --host 0.0.0.0 --port 8000 & # Start Next.js frontend on port 7860 (foreground) node server.js