Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 722 Bytes

File metadata and controls

20 lines (14 loc) · 722 Bytes

OIP Platform React

An Example Stack of what the Open Index Protocol is capable of https://oip.wiki

How to Run

To test this application, you will need to preform the following commands.

  1. Clone the repository to your local machine

    git clone https://github.com/3DRM/3drm-platform-react
    
  2. After cding to the folder we just downloaded, run the npm install command.

  3. Finally, run npm run start:prod then visit localhost:9156 in your Browser.

    Using forever package

    1. Install forever using npm install forever -g
    2. Run forever start -c "npm start" ./

    To run the server in development mode, run the command npm run start:dev instead of the command above.