Skip to content

Latest commit

 

History

History
61 lines (51 loc) · 2.28 KB

README.md

File metadata and controls

61 lines (51 loc) · 2.28 KB

Maintainability

EN | RU

An application to search for weather by city name. Possibility of weather for 4-5 days or for 33 hours with an interval of 3 hours. The limitation is related to the selected free API. screenshot-ru

Created during an internship at HTML5

Condition: use the stack HTML5 CSS3 JavaScript webpack without additional libraries.

Install for development

Developed using Node.js v20.4.0.

logo_openweathermap

To work with the API, you need your own key. Register at openweathermap.org and generate your key.

Clone the repository locally.

git clone https://github.com/zapupenec/Weather_app.git

Install the dependencies.

make install

In the root folder, create a file .env and write down your key.

// contents of .env

REACT_APP_API_KEY = 'your-secret-api-key'

Runs the app in the development mode.

make start

Open http://localhost:3000 to view it in your browser.

Builds the app for production.

make build