This project is my business website created with GatsbyJS.
My site is based on yarn as a package manager. To install node_modules, simply run the below command.
yarn install
The development server comes packaged with Gatsby. To start dev server on port 8000, run the below command.
gatsby develop
Sometimes images and other assets are cached and do not update to reflect the new update in the dev environment. To clean the cache, run the below command.
gatsby clean
Production configuration is used when doing a build, it'll be created under public directory. To create bundle, run the following command.
gatsby build