-
Notifications
You must be signed in to change notification settings - Fork 4
Getting started
zallen edited this page Dec 17, 2019
·
3 revisions
This is a guide on how to get started with no prior git or npm experience.
Things to install:
- git
- NodeJS
-
Yarn (this depends on
NodeJSbeing installed first) - Visual Studio Code
Then fork and clone down the repo:
- Click fork button in the top-right of https://github.com/rh-uxd/integration-storybook/
git clone https://github.com/YOUR-USERNAME/integration-storybook.gitcd integration-storybookgit remote add upstream https://github.com/rh-uxd/integration-storybook.gitgit fetch upstreamgit checkout -b myNewBranch upstream/master
Run the code locally:
yarn installyarn start
To make content changes, edit Markdown files using a text editor, like Visual Studio Code. You can add image files to the Sketch directory. Once done, commit them:
git add .git commit -m "What I'm changing"git push origin- Open a PR!