Skill tree for automated QA wannabies.
Download repo, then in the project directory run:
to install all the required packages. Then to run the project locally use command:
It should automatically open the browser, otherwise 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.
Before you'll merge the PR, use command:
to build statics off the app (this will update the /app folder on the github pages).
Main file with the skill data: /src/data/roadmapData.json
The skill structure is following:
~skill level~ [main skill level - for now "begginer" "intermediate" "expert"; array]
└─── ~skill~ [name of the skill (i.e. "Api automation") which is displayed; array]
│ │ "name": [displayed name of sub-skill; object - mandatory],
│ │ "optional": [should skill be displayed as optional?; boolean - optional, otherwise false],
│ │ "ngOnly": [should skill be displayed as available only for Netguru?; boolean - optional, otherwise false],
│ └─── "data": [set of links and descriptions; array]
│ │ │ "description" [description of link provided below; string object]
│ │ │ "url" [link to materials; string object, should provide full link]
│ │ │ "urlLabel" [label of the button on the link; string object]
"description" field can parse Markdown language, so proper formatting is available.
Project created using Create React App and Semantic UI