Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flybayer/wx

Simple Ember practice app
https://github.com/flybayer/wx

Last synced: 6 days ago
JSON representation

Simple Ember practice app

Awesome Lists containing this project

README

        

# Wx

This is a simple Ember practice project. I'm pulling data from http://forecast.io

## Prerequisites

You will need the following things properly installed on your computer.

* [Git](http://git-scm.com/)
* [Node.js](http://nodejs.org/) (with NPM)
* [Bower](http://bower.io/)
* [Ember CLI](http://www.ember-cli.com/)
* A developer API key from https://developer.forecast.io/

## Installation

* `git clone https://github.com/flybayer/wx.git` this repository
* change into the new directory
* `npm install`
* `bower install`

## Running / Development

* `ember server`
* Visit the app at [http://localhost:4200](http://localhost:4200).
* To get weather info for a certain location, you'll need to include your Forecast API key and location in the URL as shown below
* You can easily find your GPS coordinates by going to http://forecast.io

```
http://localhost:4200/APIKEY/LATITUDE,LONGITUDE
```

### Running Tests

* `ember test`
* `ember test --server`

### Building

* `ember build` (development)
* `ember build --environment production` (production)

### Deploying

## Further Reading / Useful Links

* [Forecast.io API Docs](https://developer.forecast.io/docs/v2)
* [ember.js](http://emberjs.com/)
* [ember-cli](http://www.ember-cli.com/)
* Development Browser Extensions
* [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi)
* [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/)