A meeting coordination app for your team.
Prerequisites
Steps
- Fork the repo to your own account
- Clone it to your computer:
git clone https://github.com/[your_account_name]/letsmeet.git && cd letsmeet - Run
npm install - Create a
.envfile in the root directory of the app with the following contents:
MONGO_URI=mongodb://localhost:27017/letsmeet
GITHUB_KEY=[YOUR_GITHUB_KEY]
GITHUB_SECRET=[YOUR_GITHUB_SECRET]
FACEBOOK_KEY=[YOUR_FACEBOOK_KEY]
FACEBOOK_SECRET=[YOUR_FACEBOOK_SECRET]
APP_URL= http://localhost:8080/
seedDB=true
- Open a new terminal session and run
mongod - Run
npm run servefrom the app's root directory. This will start the app at port 8080 (unless overridden)
To build the app instead, run npm run build