Dashboard to access, filter, and search users in birthworks unified databse.
Project Manager/Technical Lead: Ziya Xu, Mohamed Abaker.
Team Members:
- Ben Demers
- Silvi Kabra
- Ricky Raup
- Grace Fujinaga
- Joseph Zhang
- Aditya Bhati
- Taran Anantasagar
- Git Clone this repository
- Create a MongoDB Atlas Account
- Create a Heroku account
- Install Node.JS
- Install Yarn Package Manager
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"
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