By vorousja
I have a Express server (server.js) and a React app as the client in one project. the directory structure is like:
App
|_client
|_server.js
the primary packge.json has these commands:
"dev": "secrethub -- run nodemon server.js",
"start": "secrethub -- run node server.js",
"deploy": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
ive adjusted my custom build script inside the “Component” tab in the digital ocean control panel multiple times. ive tried just “npm run deploy” which worked, for the front end only. the api doesnt run.
if i run npm run deploy && npm run start then it just lags on the build phase and never finishes…
how do i deploy this to run the server as well as build the frontend?
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!
I am stumbling a bit blindly through this (i.e. I just try a bunch of things until something works, but I don’t necessarily understand why or why not), but this seems to be working for me:
On Settings Page:
Set Build command to npm run deploy
Set Run command to node server.js
Where deploy is a similar script to npm install and npm build
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.