Skip to content

Instantly share code, notes, and snippets.

@dirkk0
Last active December 11, 2015 02:29
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save dirkk0/4530915 to your computer and use it in GitHub Desktop.
Save dirkk0/4530915 to your computer and use it in GitHub Desktop.
Installing Telescope ( https://github.com/SachaG/Telescope)
# 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/
@iangcarroll
Copy link

+1! Thanks!

@jgable
Copy link

jgable commented May 23, 2013

Some small things that tripped me up:

  • If you need to change the port you can use mrt --port 3001
  • If you see urls that don't match your domain (localhost:3001/ instead of news.mysite.com/), try ROOT_URL=news.mysite.com mrt --port 3001

Hope that helps.

@chnl
Copy link

chnl commented Jul 7, 2013

Ditto! (+1! Thanks!)

@arturkim
Copy link

arturkim commented Aug 1, 2013

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 be sudo apt-get install nodejs git.

@ajaypalnitj
Copy link

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