Last active
December 11, 2015 02:29
-
-
Save dirkk0/4530915 to your computer and use it in GitHub Desktop.
Installing Telescope ( https://github.com/SachaG/Telescope)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/SachaG/Telescope | |
######################## | |
# it should be | |
sudo apt-get install git npm | |
curl https://install.meteor.com | /bin/sh | |
sudo npm install -g meteorite | |
git clone https://github.com/SachaG/Telescope.git | |
cd Telescope | |
mrt | |
######################## | |
# but on Amazon EC2 it is | |
sudo apt-get install python-software-properties | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get install nodejs npm git | |
node --version # should show 0.8x | |
sudo npm install -g meteorite | |
git clone https://github.com/SachaG/Telescope.git | |
cd Telescope | |
mrt | |
# thanks to | |
# https://github.com/oortcloud/meteorite/issues/67 | |
# http://julien-c.fr/2012/10/meteor-amazon-ec2/ |
Thanks a lot. It was so easy to install after reading this.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you, looking at this helped me set it up on my server!
There's one small update that needs to be made though. As of version 0.10.0, Chris Lea's nodejs package contains everything that the nodejs-dev and npm packages used to. So,
sudo apt-get install nodejs npm git
should besudo apt-get install nodejs git
.