misc settings, ymls and cmds
This commit is contained in:
12
_containers/opendevin/start-services.sh
Normal file
12
_containers/opendevin/start-services.sh
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Navigate to the backend directory and start the backend server in the background
|
||||
cd /opendevin/backend
|
||||
uvicorn opendevin.server.listen:app --port 3000 &
|
||||
|
||||
# Serve the frontend from the build directory
|
||||
cd /opendevin/frontend/build
|
||||
npx serve -l 3001 &
|
||||
|
||||
# Keep the container running
|
||||
wait
|
Reference in New Issue
Block a user