Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 924 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 924 Bytes

Wikipedia Map

React application that displays location markers of Wikipedia articles on Google Maps.

This project was developed as part of Netguru College: Frontend React - online workshops by Netguru (2021 edition).

.env

Get your Google Maps JavaScript API key from Google Maps JavaScript API.

Create .env file with REACT_APP_GOOGLE_API_KEY variable:

REACT_APP_GOOGLE_API_KEY = <api_key>

CLI Commands

# install dependencies
yarn install

# runs the app in the development mode at localhost:3000
yarn start

# build for production
yarn build

For other CLI commands follow Create React App documentation.

The app was bootstrapped with Create React App