Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed Apr 24, 2014
1 parent 39329d7 commit 020782e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docs/start/getting-the-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,29 @@ The recommended way to install **{{site.project_title}} {{site.latest_version}}*

#### Getting the packages

If you havent created a `bower.json` file for your application, run this command from the root of your project:
If you haven't created a `bower.json` file for your application, run this command from the root of your project:

bower init

This generates a basic `bower.json` file. Some of the questions, like "What kind of modules do you expose," can be ignored by pressing Enter.

The next step is to install {{site.project_title}}.

bower install --save polymer
bower install --save Polymer/polymer

Bower adds a `bower_components/` folder in the root of your project and fills it with {{site.project_title}} and its dependencies.

**Tip:** `--save` adds the item as dependencies in *your* app's bower.json.
{: .alert .alert-success }

**Tip:** `--save` adds the item as dependencies in *your* app's bower.json:
```
{
"name": "my-polymer-project",
"name": "my-project",
"version": "0.0.0",
"dependencies": {
"polymer": "~{{site.latest_version}}"
"polymer": "Polymer/polymer#~{{site.latest_version}}",
}
}
```
{: .alert .alert-success }

#### Getting our elements

Expand Down

0 comments on commit 020782e

Please sign in to comment.