Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey there!
Is this regarding the DigitalOcean App Platform? If so, since your frontend is a Node.js app, you’ll need to set up a separate service for it:
/frontend.npm install && npm run build
npm start
Next, we’ll set up the backend (Python + FastAPI) as a separate service:
/backend./api).Make sure that the backend service is on a different route than the frontend service. For example, you can set the backend service to /api and the frontend service to /. This way, the frontend will be served from the root URL, and the backend will be served from /api. And your frontend can make API calls to the backend using the /api route prefix.
Let me know if you run into any issues or need further help with the configuration.
- Bobby