Report this

What is the reason for this report?

Trying to set up Strapi - completely lost!

Posted on September 4, 2020

Hi all, I’ve been using Strapi locally with Node.js and was getting along fine, so I decided to try going online using Digital Ocean. I can’t figure out what’s needed to get up and running. When using my local Strapi I simply set up the api using

const axCommInstance = axios.create({

  baseURL:'http://localhost:1337/'

});

then to fetch the relevant content:

let response = axCommInstance.get('rfm-001-home-jumbo') 
        .then(function (response) {
            console.log('Dumping Response Data');
            setStrapiData(response.data);
            })
        .catch(function (error) {
            console.log(error);
        });

This returns the contents of the Single type which can then be displayed. I assumed that I would be able to do the same thing with the hosted Strapi by simply replacing the baseURL with the new one referring to the Digital Ocean host. If this is the case can someone please tell me where to find the url, and if not then what additional setup and coding steps are required in order to make the connection? Thanks very much in advance, Dan.



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.

Hi, Try to follow that step-by-step guide on how to deploy Strapi to Digital Ocean: https://strapi.io/documentation/3.0.0-beta.x/deployment/digitalocean.html

The developer cloud

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

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.