Personal blog to share thoughts, notes, and shitsplain every now and then.
This project was created from the AstroPaper template by Sat Naing.
/
├── public/
├── src/
│ ├── assets/
│ ├── components/
│ ├── content/
│ │ | **/
│ │ | └── some-blog-posts.md
│ │ └── config.ts
│ ├── layouts/
│ └── pages/
│ └── styles/
│ └── utils/
│ └── config.ts
│ └── types.ts
└── package.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.
Any static assets, like images, can be placed in the public/
directory.
- Main Framework: Astro
- Type Checking: TypeScript
- Component Framework: Svelte
- Styling: TailwindCSS
- Fuzzy Search: FuseJS
- Icons: Boxicons | Tablers
- Code Formatting & Linting: Biome
- Deployment: Cloudflare Pages
- Illustrations: Unsplash
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
pnpm install |
Installs dependencies |
pnpm run dev |
Starts local dev server at localhost:4321 |
pnpm run build |
Build your production site to ./dist/ |
pnpm run preview |
Preview your build locally, before deploying |
pnpm run check |
Runs Biome to format and lint code |
pnpm run sync |
Generates TypeScript types for all Astro modules. Learn more. |
Licensed under the MIT License, Copyright © 2023