This is my software development portfolio.
- HTML (actually JSX)
- SASS
- Javascript (React, Gatsby)
Simply visit https://stevon.dev to view this website.
If you don't feel as though using the live website is enough for you, you can run my website from the source code in this respository with these steps: Note: Must have Node JS installed
- Open command line or terminal
- Clone the repository with
git clone https://github.com/TeenageMutantCoder/portfolio-site
- Move into the directory with
cd portfolio-site
- Run
npm install
oryarn install
(if you don't have yarn installed, you can install it first usingnpm install --global yarn
). - Run
npm run start
oryarn run start
. Alternatively, you can run the production build withnpm run build && npm run serve
oryarn run build && yarn run serve
.