- Gatsby
- TailwindCSS
- Install Gatsby CLI
npm install -g gatsby-cli
- Clone the repo
git clone https://github.com/MarkyJD/Portfolio.git
cd portfolio
- Install Dependencies
npm install
- Run the development server
Either run npm start
or gatsby develop
and navigate to http://localhost:8000/
in a browser
I experienced a few issues on Windows with the .cache
folder's read/write permissions. After Gatsby failed to compile the error looked something like:
Error: EPERM: operation not permitted ...
- Clean the cache using npm
npm cache clean --force
- Change the
.cache
folder's permissions within Windows- Navigate to the
.cache
folder in File Explorer - Then Right-Click > Properties > Security
- Click Edit and then Add to add a user
- Enter everyone and set the permissions below with read and write set to allow
- Hit Apply
- Navigate to the