/Birthworks

Dashboard website to view all data about users of Birthworks.

Primary LanguageJavaScript

Birthworks

Dashboard to access, filter, and search users in birthworks unified databse.

Project Manager/Technical Lead: Ziya Xu, Mohamed Abaker.

Team Members:

  • Ben Demmers
  • Silvi Kabra
  • Ricky Raup
  • Grace Fujinaga
  • Joseph Zhang
  • Aditya Bhati
  • Taran Anantasagar

Setting Up

Recommended Tools Checklist

Configuring Enviromental Variable

Create file called ".env.development" in a "config" folder in the root directory (you may have to create a new config folder). It should look like the following:

ATLAS_URI=mongodb-connection-string-placeholder
JWT_SECRET=my-secret-jwt-key-placeholder

Then, create another file called ".env.development.local" in "src/client", it should look like the following:

REACT_APP_API_URL="http://localhost:5000"

Running Project

For the first time after cloning only:

$ # setup yarn
$ yarn setup
$ # run both server and client
$ yarn dev
$ # run server only
$ yarn server
$ # run client only
$ yarn client