Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/flybayer/wx
- Owner: flybayer
- Created: 2015-12-07T13:49:12.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-14T14:31:08.000Z (about 9 years ago)
- Last Synced: 2024-12-10T19:53:06.863Z (about 1 month ago)
- Language: CSS
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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/)