#ReactParties
Guest management system written using ReactJS on the front-end along with an ExpressJS API on the back-end.
- Clone the repository w/
git clone
- Install npm dependencies by running
npm install
in the root folder - Make sure .env file is setup with client, secret, and mongodb uri
- Install MongoDB, code will not work without it
- Start server w/
npm start
and start client hot module replacement w/npm run serve
- When code is ready to be committed make sure to run
npm run dist
in order to build client app for production
- Client is located in
client
- Server is located in
server
- Common modules are located in
common