Simple and powerful minimalist portfolio static site, created as study case with purpose to be my personal site using Gatsby as static site engine.
# clone repo
git clone https://github.com/lexmartinez/gatsby-portfolio
# change directory to cloned app
cd gatsby-portfolio
# install the dependencies with yarn
yarn install
# start the server
yarn start
go to http://localhost:8000 in your browser.
After you have installed all dependencies you can now start developing with:
yarn start
It will start a gatsby dev server using which will watch, build (in-memory), and reload for you. The application can be checked at http://localhost:8000
.
Keep all formatted with prettier, using the command
yarn format
All content data is handled via GraphQL and config.json
file, any content change should be made there.
In order to generate a distribution bundle you can use the following commands:
# build for production with minification
yarn build
This project is licensed under MIT License - see the LICENSE.md file for details.