We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b9ab1c commit 16d99ffCopy full SHA for 16d99ff
installers/installUbuntu.sh
@@ -1,14 +1,17 @@
1
# Add repositories
2
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
3
sudo apt-get install -y python-software-properties python g++ make
4
+sudo apt-get install software-properties-common
5
sudo add-apt-repository -y ppa:chris-lea/node.js
6
sudo apt-get update
7
8
# Install dependencies
9
sudo apt-get install mongodb-10gen
10
+
11
sudo apt-get install nodejs
12
+sudo ln -s /usr/bin/nodejs /usr/bin/node
13
-npm install -g grunt-cli
14
+sudo npm install -g grunt-cli
15
16
# Setup the application
17
cd server/ && npm run-script setup
0 commit comments