https://github.com/hiconvo/web
Convo's web frontend application
https://github.com/hiconvo/web
javascript react
Last synced: 3 months ago
JSON representation
Convo's web frontend application
- Host: GitHub
- URL: https://github.com/hiconvo/web
- Owner: hiconvo
- Created: 2019-05-31T23:41:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T01:55:09.000Z (over 2 years ago)
- Last Synced: 2024-11-04T01:32:49.802Z (8 months ago)
- Topics: javascript, react
- Language: JavaScript
- Homepage: https://app.convo.events
- Size: 5.89 MB
- Stars: 20
- Watchers: 2
- Forks: 2
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starred - hiconvo/web - Convo's web frontend application (react)
README
# Convo Web
[](https://app.netlify.com/sites/hiconvo-app/deploys) [](https://plausible.io/app.convo.events)
This repo holds the source code for Convo's web app [app.convo.events](https://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=
REACT_APP_GOOGLE_CLIENT_ID=# Optional
REACT_APP_SENTRY_DSN=
REACT_APP_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
```