This is my personal knowledge base: Quick tips and tricks to remember how to do things I repeat, so I can skip the search next time.
This project is built with the following technologies:
- Astro - static site generation
- React - component library
- Tailwind CSS - CSS framework
- Vercel - hosting
- Bun - all-in-one javascript runtime & toolkit
root
├── public # static assets
│ └── posts # images of posts
├── scripts # tools and utilities
└── src
├── components # astro and react components
├── layouts # page layouts
├── pages # page files
│ ├── categories # category pages
│ └── posts # markdown files
└── styles # global stylesheets
To get started, clone the repository and install the dependencies:
git clone https://github.com/andrewzn69/howto.zemn.xyz
cd howto.zemn.xyz
bun install
bun run dev
This will start the development server. Open http://localhost:4321 to view it in the browser.