Question

What should I change localhost:3000 axios requests to when deployed?

I’m having trouble with figuring out how to access my express api. On my local development machine I had no trouble accessing it with axios requests for example:

 axios
        .get(`http://localhost:3000/pollPage/fetchMovie/${query}`)
        .then((response) => {

however now that my app is deployed these requests do not work anymore they give me 404 errors. what should I change these requests to so that my app is able to function again? If you want to know how my application is setup here is the github link: https://github.com/jak6jak/movie-polling


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Bobby Iliev
Site Moderator
Site Moderator badge
February 5, 2021
Accepted Answer

Hi there @jak6jak,

What you could do is set up a base URL

axios.defaults.baseURL = process.env.APP_URL

Then you could use the DigitalOcean App env variables to pass the APP_URL to your application:

https://www.digitalocean.com/docs/app-platform/how-to/use-environment-variables/

In your local environment, you can set the APP_URL to http://localhost:3000.

Let me know how it goes! Regards, Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel