Files
meteor/docs/client/common/quick-start.md
2014-10-28 02:28:35 -07:00

32 lines
502 B
Markdown

{{#template name="quickStart"}}
## Quick start!
The following works on all [supported
platforms](https://github.com/meteor/meteor/wiki/Supported-Platforms).
Install Meteor:
```bash
$ curl https://install.meteor.com | /bin/sh
```
Create a project:
```bash
$ meteor create myapp
```
Run it locally:
```bash
$ cd myapp
$ meteor
# Meteor server running on: http://localhost:3000/
```
Unleash it on the world (on a free server we provide):
```bash
$ meteor deploy myapp.meteor.com
```
{{/template}}