Skip to content
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.
/ weather-web-app Public archive

Simple web app implemented using reactjs/redux/typescript stack to view weather forecasts from OpenWeatherMapAPI.

License

Notifications You must be signed in to change notification settings

dimastofff/weather-web-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.