Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calvinlfer/weather-manager-frontend
A simple UI that is meant to interact with the Weather Manager API
https://github.com/calvinlfer/weather-manager-frontend
jsx react react-redux webpack
Last synced: about 1 month ago
JSON representation
A simple UI that is meant to interact with the Weather Manager API
- Host: GitHub
- URL: https://github.com/calvinlfer/weather-manager-frontend
- Owner: calvinlfer
- License: mit
- Created: 2017-04-14T01:10:10.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-16T15:31:58.000Z (almost 8 years ago)
- Last Synced: 2025-01-05T08:47:55.193Z (about 1 month ago)
- Topics: jsx, react, react-redux, webpack
- Language: JavaScript
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.MD
Awesome Lists containing this project
README
# Weather Manager Frontend
A simple UI created using React and Redux that is meant to interact with the [Weather Manager API](https://github.com/calvinlfer/Weather-Manager). This makes use of Google Places API in order to perform the location autocompletion/suggestion and resolve coordinates (latitude and longitude)### Getting Started
Checkout this repo, install dependencies, then start the gulp process with the following:```
> git clone https://github.com/calvinlfer/Weather-Manager-Frontend.git
> cd Weather-Manager-Frontend
> npm install
> npm start
```You need to signup for a [Google API key](https://console.developers.google.com) and make sure to enable the Places API. In [index.html](https://github.com/calvinlfer/Weather-Manager-Frontend/blob/master/index.html), replace the existing key with your new key.
#### Credits:
This project has been forked from [ReduxSimpleStarter](https://github.com/StephenGrider/ReduxSimpleStarter)