Vulcan/packages/telescope-getting-started/content/deploying_telescope.md

21 lines
977 B
Markdown
Raw Normal View History

2014-12-31 17:44:21 +09:00
### Quick Deploy
Once you've played around with Telescope, you might want to deploy your app for the whole world to see.
You can do so easily using Meteor's own free hosting service. Just open a terminal window, go to your Telescope app's directory, and type:
```
meteor deploy my-app
```
Where `my-app` is a unique name you'll pick for your Telescope app. It will then be deployed to `http://my-app.meteor.com`.
You might need to create a Meteor account first. Just follow the instructions!
Note that deploying does *not* copy over your database, which contains your posts and settings. So you'll need to configure them separately on your remote Telescope instance.
### Deploying For Production
Hosting on `*.meteor.com` is fine for small apps and prototypes, but if you want to deploy your app in production you'll need something better.
2015-01-05 10:52:46 +09:00
Check out [the Telescope documentation](http://www.telesc.pe/docs/getting-started/deploying/) to learn more about this topic.