Simple Rails app that gives you the 5 days forecast for different cities based on the Accuweather API.
- Ruby 2.3.0
- Rails 4.2.0
- Redis server running
First, clone the repo.
git clone https://github.com/aamatte/acid-forecast.git
Second, set up the redis server url:
export REDIS_URL=your_redis_server_url
Then, set up the Accuweather api key:
export ACID_FORECAST_ACCUWEATHER_KEY=your_accuweather_app_api_key
Install the needed gems:
bundle install
And run the server:
rails server