Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 830 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 830 Bytes

nipafx.dev

My Gatsby site.

Content

The site shows various kinds of content, like blog posts, YouTube videos, newsletters, and more. To keep things organized, I defined some terms:

  • Article: What is usually called a blog post - a proper article on any topic
  • Event: Announcements of Accento, 26 Hours Of Java, etc.
  • Talks: An abstract and list of presentations for a talk
  • Video: A post linking to a YouTube video
  • Post: Each of the above is a post

Building & Deploying

# to develop the site locally:
npx gatsby develop

# to develop Netlify integrations locally:
npx netlify dev

# to build the site:
npx gatsby clean
npx gatsby build
# or shorter:
npm run build

# to deploy the site (requires env vars
# `NETLIFY_SITE_ID` and `NETLIFY_AUTH_TOKEN`)
npx netlify deploy --prod --dir=public