Pre-release version of Coding Coach.
Just go to https://mentors.codingcoach.io/ and find her / him.
- Git should be installed Install Git
- Nodejs 11.6.0+ installed Install Nodejs
- Yarn (we recommend using yarn as a package manager) Install Yarn
- Fork
yarn
- Create a branch "add-{your-name}-as-mentor"
- Add your details in
src/mentors.json
file. - Run
yarn run sync-lists
- Run
yarn test
to validate that the details is following the right schema. - PR with the title "Add {Your Name} as mentor".
- Thanks!
Notes:
- Please double check your details. It’s important that the data scheme remains the same; just replace the details with your values. If you change the data architecture, it will cause errors.
- In order to avoid merge conflicts, please fetch the changes on master before pushing.
{
"id": "your email",
"name": "your name", // minLength: 2
"avatar": "https://link-to-your/avatar.jpg", // url
"title": "NodeJS developer", // minLength: 2, maxLength: 30
"description": "Hi, I'm NodeJs developer", // minLength: 5, maxLength: 80 optional
"country": "Israel", // Full name. please avoid synonyms (check if it's not already exist)
"tags": [ // minItems: 1, maxItems: 5
"nodejs", "webpack", "mongodb" // please avoid synonyms
],
"channels": [ // minItems: 1, maxItems: 3
{
"type": "email", // see available channels below
"id": "john@gmail.com" // depends on the type
}
]
}
type | parameter |
---|---|
email address | |
slack | memberID (How to find it?) |
userId | |
userId | |
userId |
That's why we here! 😀
Have an idea? Please use a branch and create a PR. If you not sure how to do this, ask us or find a mentor who can assist.
Haven't time to code it? Please open an issue.
This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.