mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
32 lines
502 B
Markdown
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}} |