This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Prerequisites Install Guide for Ubuntu
mike-tulubaev edited this page Jan 19, 2021
·
1 revision
Tested on Ubuntu 18.04
This article will guide you through setting up OpenMappr for development on Ubuntu.
Inside a terminal window, perform the following steps:
sudo apt update
sudo apt remove docker docker-engine docker.io containerd runc -y
sudo apt install curl build-essential ruby-full git python -y
sudo gem install sass compass
curl -sSL https://get.docker.com | sudo bash
sudo systemctl start docker
sudo systemctl enable docker
sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
nvm install 8.12.0
nvm use 8.12.0
npm install -g yo bower grunt-cli
That's it! Continue to the main readme for instructions on running the app.