Install Parse Server on Ubuntu (With Dashboard)
Read Time - 1 minBeing a firm believer in rapid prototyping, it is important to me not to try re-invent the wheel when working on side projects. Facebook's Parse project is one of the tools in my arsenal when it comes to getting a fully functional backend up and running in no time.
It gives you out of the box a full functioning backend and a great community maintaining the source code and making it easier to get started. Good starting point is the Parse Server Example App.
With just a few tweaks, you can get the server up with the dashboard out of the box. This will be walkthrough installing it on an ubuntu server since the boilerplate code already has one click install options for AWS, Heroku, etc.
- ssh into your server (I am assuming you are using a digital ocean droplet but it should work same on lightsail, etc)
- Install Node
- Install Mongo DB
- Download and Clone the repository
- cd into the repo
- Install Dependencies
- Change the config in index js to match your server. Change local host to your server’s address
- Fire Up your engines
*Your server must be working now. Depending on your server, you may have to visit YourServerIP:1337/dashboard. You can log in with the username and password which is set in Index.js.__
Now go forth and save the world