Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 997 Bytes

File metadata and controls

31 lines (20 loc) · 997 Bytes

Convo Web

Netlify Status Plausible

This repo holds the source code for Convo's web app app.convo.events.

Development

In order to run the project locally, you need to create an .env file and place it at the root of the project. The .env file should contain a Google API key and a Google Client ID. It should look something like this:

REACT_APP_GOOGLE_API_KEY=<YOUR API KEY>
REACT_APP_GOOGLE_CLIENT_ID=<YOUR CLIENT ID>

# Optional
REACT_APP_SENTRY_DSN=<YOUR SENTRY DSN>
REACT_APP_API_ORIGIN=<YOUR API ORIGIN>

If you don't include this file, Google maps won't work.

To start development, all you have to do is run the following commands.

# Install dependencies
yarn

# Start the server
yarn start