Dominic's Astro blog; primary repo for Coolify deploys.
  • Astro 39.5%
  • JavaScript 20.8%
  • Python 17.1%
  • CSS 13.7%
  • TypeScript 5.3%
  • Other 3.6%
Find a file
2026-06-20 19:21:46 +00:00
.vscode Initial commit from Astro 2026-01-20 10:27:16 +00:00
cursor-chat-logs lmao 2026-02-03 14:18:10 +00:00
public fix small stuff 2026-01-20 15:38:10 +00:00
scripts move unpublished 2026-01-27 13:59:04 +00:00
src dwd 2026-05-07 14:04:32 +00:00
zzz_finance whatevs 2026-06-06 19:13:28 +00:00
.dockerignore Add Dockerfile for Coolify deployment 2026-06-20 19:08:26 +00:00
.gitignore wip 2026-01-20 13:18:12 +00:00
astro.config.mjs Allow overriding Astro site URL 2026-06-14 22:29:37 +00:00
data.db migrating wip 2026-01-20 12:33:45 +00:00
Dockerfile Add Dockerfile for Coolify deployment 2026-06-20 19:08:26 +00:00
Dockerfile.claude-code migrating wip 2026-01-20 12:33:45 +00:00
package.json vibe tailwind setup 2026-01-22 16:17:00 +00:00
pnpm-lock.yaml vibe tailwind setup 2026-01-22 16:17:00 +00:00
README.md Initial commit from Astro 2026-01-20 10:27:16 +00:00
run-claude-code.sh migrating wip 2026-01-20 12:33:45 +00:00
SEO-REPORT.md tweaks 2026-01-20 13:42:52 +00:00
tsconfig.json Initial commit from Astro 2026-01-20 10:27:16 +00:00

Astro Starter Kit: Blog

pnpm create astro@latest -- --template blog

🧑‍🚀 Seasoned astronaut? Delete this file. Have fun!

Features:

  • Minimal styling (make it your own!)
  • 100/100 Lighthouse performance
  • SEO-friendly with canonical URLs and OpenGraph data
  • Sitemap support
  • RSS Feed support
  • Markdown & MDX support

🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

├── public/
├── src/
│   ├── components/
│   ├── content/
│   ├── layouts/
│   └── pages/
├── astro.config.mjs
├── README.md
├── package.json
└── tsconfig.json

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

The src/content/ directory contains "collections" of related Markdown and MDX documents. Use getCollection() to retrieve posts from src/content/blog/, and type-check your frontmatter using an optional schema. See Astro's Content Collections docs to learn more.

Any static assets, like images, can be placed in the public/ directory.

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
pnpm install Installs dependencies
pnpm dev Starts local dev server at localhost:4321
pnpm build Build your production site to ./dist/
pnpm preview Preview your build locally, before deploying
pnpm astro ... Run CLI commands like astro add, astro check
pnpm astro -- --help Get help using the Astro CLI

👀 Want to learn more?

Check out our documentation or jump into our Discord server.

Credit

This theme is based off of the lovely Bear Blog.