Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiconvo/web
Convo's web frontend application
https://github.com/hiconvo/web
javascript react
Last synced: 5 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T01:55:09.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T12:31:16.378Z (3 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
[![Netlify Status](https://img.shields.io/netlify/4115c483-6e1a-4afd-af8c-9157755eda04)](https://app.netlify.com/sites/hiconvo-app/deploys) [![Plausible](https://img.shields.io/badge/plausible-popularity%20contest-blueviolet)](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
```