https://github.com/coderkearns/blog
https://github.com/coderkearns/blog
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/coderkearns/blog
- Owner: coderkearns
- Created: 2026-03-19T20:00:41.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-04-03T15:45:16.000Z (about 2 months ago)
- Last Synced: 2026-04-03T19:03:26.629Z (about 2 months ago)
- Language: Astro
- Size: 162 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blog
A personal blog built with [Astro](https://astro.build) and deployed to GitHub Pages.
- `src/` — layouts, pages, and styles
- `blog/` — MDX files, one per post
## Dev
Install dependencies:
```sh
pnpm install
```
Start the local dev server:
```sh
pnpm dev
```
Preview the production build locally:
```sh
pnpm build && pnpm preview
```
## Publish
Build the site and push it to the `gh-pages` branch:
```sh
pnpm deploy
```
The `deploy` command builds the static site into `dist/` and publishes it to the `gh-pages` branch using [`gh-pages`](https://github.com/tschaub/gh-pages).