Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/pawcoding/astro-blog
- Owner: pawcoding
- Created: 2023-10-27T09:48:37.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-06T15:03:45.000Z (19 days ago)
- Last Synced: 2025-01-06T16:22:05.385Z (19 days ago)
- Topics: astro, blog, satori, ssg, tailwindcss, vercel
- Language: MDX
- Homepage: https://blog.pawcode.de
- Size: 3.26 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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**
**Languages**
**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 |