Contributor's individual project development guide
Contributors are to run the CLI commands and flags as described on the CLI repo readme:
The method of installation is different during code development:
Install dependencies
npm install
Link after installing dependencies:
npm link
Unlink (for when you are done developing):
npm unlink
Learning resources
- youTube video.
- blog post.
Contributors are to run the project as described on the API boilerplate templates repo readme:
How to handle the .env files is different during code development:
Retain the .env.example file so that it doesn't get deleted from our repo when you are submitting your code fix
Create a copy of the .env.example file, rename this copy to .env , then change the PORT and add other environment variables to store your secrets as desired.