Install Raneto Docs CMS on Ubuntu 16.04 | 18.04 | 18.10

Raneto Docs is a light, fast knowledge base platform for Node.js that uses static Markdown files (flat-file) to power the knowledge base. It allows users and webmasters to create websites without the need of a separate database. Just download the web content files and enjoy!

It offers features that may not be available to other PHP based CMS, like WordPress Joomla or Drupal.

For one, it doesn’t need a database server, call it database-less. All of your content is stored in the content folder in Markdown (.md) files and the entire knowledge base structure and content is generated by Raneto.

It comes with features that you need like SEO friendly design, flexible CSS framework and more.

For more about Raneto, please check it homepage.

This brief tutorial shows students and new users how to install Raneto Doc on Ubuntu 16.04, 18.04 and 18.10.To get started with installing Raneto, please continue below:

Step 1: Install Node.Js

Raneto runs on Node.js, a java script runtime and framework. To install Node.js on Ubuntu from its LTS repository, run the commands below to install:

sudo apt update
sudo apt install curl git
curl -sL  | sudo -E bash -
sudo apt install -y nodejs

After that, Node.js should be installed and ready to use as well.

Step 2: Install PM2 Process Manager

Another requirement for Raneto is PM2 process manager. To install PM2 package on Ubuntu, run the commands below:

sudo npm install pm2 -g

After that, your system should be ready for Raneto CMS.

Step 3: Install Raneto

To get Raneto, you’ll want to clone it from Github to your home directory.To do that run the commands below

cd ~/
git clone 

After that, change into Raneto folder by running the commands below.

cd Raneto

Next, install NPM from the folder by running the commands below.

npm install

After running the commands above, you may get a message to resolve some vulnerabilities. Run the commands below to fix.

npm audit fix --force

When you’re done, run the commands below to install Gulp. a dependency to run Raneto.

sudo npm install --global gulp

Once Gulp has finished running, run the commands below to start up npm which is a server that Raneto runs on.

npm start

After starting the service, you should see a message below:

> [email protected] start /home/richard/Raneto
> DEBUG=raneto node example/server.js

  raneto Express HTTP server listening on port 3000 +0ms

You will now be able to access your new Raneto installation by navigating to http://localhost:3000.

Open your browser and browse to the server hostname or IP address followed by port # 3000

Raneto ubuntu install

You should see a homepage with bunch of other tutorials on how to make new pages, add categories, adjust sorting, add a custom homepage and edit the template and more.

You may also like the post below: