Skip to content

fjsnow/fjsn.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My personal site

This is my personal site, built with Astro and Bun.

Mark down files placed within src/pages/posts will be automatically converted to blog posts, with layout (if set in the frontmatter) and all.

Post Template

---
layout: "@/layouts/Post.astro"
title:
description:
published:
tags:
---

# content

Optionally, you can provide listed: false in the frontmatter to hide the post from the index, and edited: true to provide a link to the edit history.

Running the site

Prerequisites

  1. Bun

Development

  1. Install the dependencies with bun install
  2. Run bun run dev to start the development server
  3. Open http://localhost:4321 to view it in the browser

Deployment

  1. Install the dependencies with bun install
  2. Run bun run build to build the site
  3. Deploy the dist directory to your server