Hi, I have a React application on the App Platform and wish to serve the static build file. Within settings you can set the #### Commands, there’s two at current on the platform. Build Commands and Run Commands.
I’m currently running an ##### Ubuntu 18.04 stack with Node.js [latest].
I want to be able to run the serve build
command as suggested in https://create-react-app.dev/docs/deployment/ for deploying a create-react-app. However, I am unsure if I’m able to globally install and run the npm package serve
and have it serve
the build directory for my app.
At current I just have the run command running npm start
which runs the local development create-react-app server.
Any ideas? Thanks
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.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
Indeed, rather than deploy your React app as a web service to the App Platform and running the development server with
npm start
, you can deploy your app as a static website.You can follow this step-by-step tutorial on how to do that here:
Mainly follow step 3, which describes how to configure your component as a static website that will run
npm run build
and deploy the build assets rather running the development server.Hope that this helps!
Let me know if you have any questions!
Best,
Bobby