Here you can find all my articles. I write about interesting stuff I came across while working on projects or just for fun as well as small tutorials and guides. I hope you enjoy reading them as much as I enjoyed writing and researching them.
To see the blog in action, visit blog.pawcode.de.
This repository is only public to view the source code.
I will not accept any pull requests or issues.
- Yearly review: Looking back at 2024
- Building an Astro Loader
- Integrating local AI into Rainbow Palette
/
├── .github/workflows/ <-- GitHub Actions for semantic-release
│
├── public/ <-- Static assets like images
│
├── src/
│ ├── assets/ <-- Images that will be optimized by Astro
│ │
│ ├── components/ <-- Astro components like Header, Footer, etc.
│ │ │
│ │ └ posts/ <-- SolidJS components for interactive blog elements
│ │
│ ├── content/
│ │ └ posts/ <-- Markdown files for blog posts
│ │
│ ├── layouts/ <-- Layout components like base or post layout
│ │
│ ├── pages/ <-- Astro pages like index, posts, og-images, etc.
│ │
│ └── utils/ <-- Utility functions
│
└── astro.config.mjs <-- Configuration for Astro and plugins
Command | Action |
---|---|
pnpm install |
Installs dependencies |
pnpm run dev |
Starts local dev server at localhost:4321 |
pnpm run build |
Build the production site to ./dist/ |
pnpm run preview |
Preview the build locally, before deploying |
pnpm run prettier |
Format the code |