A portfolio site of Minghua Sun.
All rights reserved for the creative content served on the site and saved under
src/img
,src/pages
,static/img
.
This site is built with Gatsby v2, and Netlify CMS, leveraging gatsby netlify cms starter.
It follows the JAMstack architecture by using Git as a single source of truth, and Netlify for continuous deployment, and CDN distribution.
- Node v14.18.0
- npm v6.14.15
- $
nvm use
- to use the specified node version - $
yarn
— to install dependencies - $
npm run start
— to start the gatsby site
To test the CMS locally, you'll need to run a production build of the site:
- $
npm run build
- Uncomment
# local_backend: true
in netlify admin config - $
npx netlify-cms-proxy-server
in terminal window 1 - $
npx netlify dev
in terminal window 2 - checkout
http://localhost:[port]/admin
Media Libraries have been included in this starter as a default. If you are not planning to use Uploadcare
or Cloudinary
in your project, you can remove them from module import and registration in src/cms/cms.js
. Here is an example of the lines to comment or remove them your project.
import CMS from 'netlify-cms-app'
// import uploadcare from 'netlify-cms-media-library-uploadcare'
// import cloudinary from 'netlify-cms-media-library-cloudinary'
import AboutPagePreview from './preview-templates/AboutPagePreview'
import BlogPostPreview from './preview-templates/BlogPostPreview'
import ProductPagePreview from './preview-templates/ProductPagePreview'
import IndexPagePreview from './preview-templates/IndexPagePreview'
// CMS.registerMediaLibrary(uploadcare);
// CMS.registerMediaLibrary(cloudinary);
CMS.registerPreviewTemplate('index', IndexPagePreview)
CMS.registerPreviewTemplate('about', AboutPagePreview)
CMS.registerPreviewTemplate('products', ProductPagePreview)
CMS.registerPreviewTemplate('blog', BlogPostPreview)
Note: Don't forget to also remove them from package.json
and yarn.lock
/ package-lock.json
using yarn
or npm
. During the build netlify-cms-app will bundle the media libraries as well, having them removed will save you build time.
Example:
yarn remove netlify-cms-media-library-uploadcare
OR
yarn remove netlify-cms-media-library-cloudinary
Follow the Netlify CMS Quick Start Guide to set up authentication, and hosting.
Windows users might encounter node-gyp
errors when trying to npm install.
To resolve, make sure that you have both Python 2.7 and the Visual C++ build environment installed.
npm config set python python2.7
npm install --global --production windows-build-tools
MacOS users might also encounter some errors, for more info check node-gyp. We recommend using the latest stable node version.
This plugin uses gatsby-plugin-purgecss and bulma. The bulma builds are usually ~170K but reduced 90% by purgecss.
Custom editor for a image gallery (a list of images that rendered in a grid and a lightbox) is not fulling working, as a stop gap:
<lightbox col='3'>
<rehype-image src="yes-delislicer.jpg" text="text"></rehype-image>
<rehype-image src="yes-cleaner.jpg" text="text"></rehype-image>
<rehype-image src="yes-fryolator.jpg" text="text"></rehype-image>
<rehype-image src="yes-ladder.jpg" text="text"></rehype-image>
<rehype-image src="yes-register.jpg" text="text"></rehype-image>
<rehype-image src="yes-wheelchair.jpg" text="text"></rehype-image>
</lightbox>
For a single image to leverage the grid for responsive widths and gatsby image:
<div class="grid grid--col_2">
<rehype-image src="facebookfan.jpg" caption="This is one of the four postcards I designed for this event. "></rehype-image>
</div>
For a gif with a play button:
<gif src="fashion-interact.gif"></gif>