- Cafe and Kids is an app to help parents find great playgrounds near great coffee shops. It is a single page, front-end only app using HTML, CSS, JavaScript and React.
- It uses Google Maps API and the OpenWeather API.
- The app is live for users at https://cafeandkids.com (hosted on a Google Cloud Kubernetes cluster)
- Clone the repository.
git clone https://github.com/umbauk/cafe-and-kids.git
- Install dependencies.
npm install
-
Set-up local environment variables.
- Create a file named
.env
in the root directory & add the following contents.
REACT_APP_GOOGLE_API_KEY=<YOUR_GOOGLE_MAPS_API_KEY> REACT_APP_OPEN_WEATHER_KEY=<YOUR_OPEN_WEATHER_API_KEY>
- Create a file named
-
Run Tests.
npm test
- Run the development server.
npm start