npm i
npm start- Create a file in
src/pages/articles/. Name the file[date]-[slug].md; - Add your frontmatter:
---
title: [title]
date: "[date]"
authors:
- [author]
featureImage: ./[image]
tags:
- [tag]
---- Write your article
- Make sure you have a feature image the you added to your frontmatter in
src/pages/articles/. - That's it!
In order to make it easier and quicker to release blog posts, this repo uses a different deployment method:
- Deploy to production by committing to master.
- To deploy to the dev environment, merge commits into the develop branch.