The Room project is a web application that aims to improve the interaction experience of remote workers.
You can get the Room API, the Endpoints documentation and the MVP Process Documentation on github.
Check the working application here.
Open terminal and run the command below to clone this repository.
$ git clone git@github.com:roavellarm/room-web.git
$ cd room-web
In the project directory, install dependencies by running:
$ yarn install
You'll need to add ambient variables to the .env file:
$ cat > ./.env << ENDOFFILE
REACT_APP_API_URL=http://localhost:5000
REACT_APP_MIXPANEL_TOKEN=xxxxxxxxxxxxxxxx
ENDOFFILE
To start the application in the development mode, run:
$ yarn start
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
$ yarn build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.