misc settings, ymls and cmds

This commit is contained in:
Dobromir Popov
2024-04-07 20:20:36 +03:00
parent fb96c68f6f
commit 36a8c5a0c3
7 changed files with 82 additions and 7 deletions

View 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