Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pawcoding/astro-blog

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.
https://github.com/pawcoding/astro-blog

astro blog satori ssg tailwindcss vercel

Last synced: 1 day ago
JSON representation

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.

Awesome Lists containing this project

README

        

# pawcode Blog

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](https://blog.pawcode.de/?mtm_compaign=GitHub&mtm_kwd=astro-blog&mtm_source=GitHub).




This repository is only public to view the source code.


I will not accept any pull requests or issues.


---

### Latest blog posts

- [Yearly review: Looking back at 2024](https://blog.pawcode.de/posts/yearly-review-2024/?mtm_compaign=GitHub&mtm_kwd=astro-blog&mtm_source=GitHub)
- [Building an Astro Loader](https://blog.pawcode.de/posts/building-an-astro-loader/?mtm_compaign=GitHub&mtm_kwd=astro-blog&mtm_source=GitHub)
- [Integrating local AI into Rainbow Palette](https://blog.pawcode.de/posts/local-ai-in-the-browser/?mtm_compaign=GitHub&mtm_kwd=astro-blog&mtm_source=GitHub)

---

### Technical Details

**Frameworks**


Frameworks

**Languages**


Languages

**Tools**


Tools

---

### Project Structure

```text
/
├── .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
```

---

### Commands

| 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 |