Skip to content

Latest commit

 

History

History
60 lines (48 loc) · 1.09 KB

README.md

File metadata and controls

60 lines (48 loc) · 1.09 KB

Portfolio website of Jeffrey Barron

Markdown Rules

  1. Markdown files must have a file extension of '.mdx' or '.md' only.
  2. Each markdown file must contain the following Frontmatter
---
modified: {{date:YYYY-MM-DD HH:mm}}  
modifiedTs: {{date:x}}  
created: {{date:YYYY-MM-DD HH:mm}}  
createdTs: {{date:x}}  
layout: MDXLayout  
route: /blog  
slug: __SLUG__
ext: .mdx or .md 
title: {{title}}  
summary: __SUMMARY__
image: /images/photos/20230411-Three-Sisters.jpg
authors: [jeffbarron]  
tags: [draft]
---

Deployment

.env.local
SENDGRID_API_KEY=XXXXX
.env.development
ROOT_URI=http://localhost:3000
.env.production
ROOT_URI=https://jeffreybarron.com

Build and Run Development

make dev

Build Production

make build

Build and Local Production

make start

Useful links