Created using (Node, Express, Mongo, React) by Cory Crowley
Deployed on Heroku
- Install Node.js, MongoDB, & node package manager NPM
- Make sure git is installed and configured on your computer
Use scripts below to run the application locally
# install dependancies
npm install
# Start local mongodb instance (Terminal 1)
mongod
# run the server in development mode with nodemon (Terminal 2)
npm run server-dev
# runs create-react-app front-end (need to be in /client folder) (Terminal 3)
cd client && npm start
Before you can run, test, or build the application, you must create a .env file!
Variable | Value |
---|---|
PORT | 3000 |
MONGO_CONNECT_DEV | mongodb://127.0.0.1:27017 |
A general guide to contribute in this repository is:
- Fork it!
- Create your feature branch:
git checkout -b feature/my-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin feature/my-feature
- Submit a pull request 🚀