Skip to content

Latest commit

 

History

History
92 lines (65 loc) · 2.02 KB

README.md

File metadata and controls

92 lines (65 loc) · 2.02 KB

Just my portfolio to demonstrate my coding and design projects.

Table of contents

Dev environment setup

This project uses Gatsby to build static pages. Follow instuctions below.

Clone the repo

Clone the repo from Github.

gh repo clone ImpactDesigns/stedmandesigns.io

Back to top

Node requirements

Before installing the dependency packages, make sure you are using Node v16.20.2 or earlier.

nvm list
nvm install v16.20.2
nvm use v16.20.2

Back to top

Install dependencies

Install the project dependencies from NPM.

npm install

Back to top

Develop with Storybook

This project uses Storybook for developing reusable React components in isolation, and for component documentation. Run the command below.

npm run storybook

Then open your browser to http://localhost:6006/?path=/docs/components-shared-section--docs.

Back to top

Gatsby development server

npm run start

Back to top

Acknowledgments

Back to top