Skip to content
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.

Latest commit

 

History

History
31 lines (20 loc) · 878 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 878 Bytes

weather-web-app

Simple web app implemented using reactjs/redux/typescript stack to view weather forecasts from OpenWeatherMapAPI. Selecting and searching for a location using YandexMapsAPI. Multilingual support using i18n.

Example

Mobile view Desktop view

How to run project

  1. Create a .env file at the root of the project and put the keys from OpenWeatherMapAPI and YandexMapsAPI into the file.
REACT_APP_OPEN_WEATHER_MAP_API_KEY=YOUR_KEY
REACT_APP_YANDEX_MAPS_API_KEY=YOUR_KEY
  1. Install project dependencies.
$ npm install
  1. Start development server.
$ npm start
  1. Go to http://localhost:3000/ in browser.