Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 699 Bytes

CONTRIBUTING.md

File metadata and controls

32 lines (21 loc) · 699 Bytes

Contributing Guidelines

Setup

  • Fork Repository.

  • Clone Repository.

git clone https://github.com/{Your_Username}/course-catalogue.git
cd course-catalogue
  • Create keys_dev.js file in config folder with the following data:
module.exports = {
	mongoURI: YOUR_LOCAL_MONGO_SERVER_URI,
	secretOrKey: YOUR_SECRET,
	emailVerificationKey: YOUR_EMAIL_VERIFICATION_KEY
};
  • The emailVerificationKey can be found by creating an account here.

Contributing

  • Have a look at the open issues. Pick an unassigned issue or create one.

  • Create a new branch and make changes.

  • Send a Pull Request after making changes.