1<!--
2SPDX-FileCopyrightText: 2025 Norbert Melzer
3SPDX-FileContributor: Norbert Melzer
4
5SPDX-License-Identifier: CC-BY-4.0
6-->
7
8# nobbz.dev personal blog and website
9
10This repository contains the source code for my personal blog and website at [blog.nobbz.dev](https://blog.nobbz.dev).
11
12## Technology Stack
13
14- [Astro](https://astro.build/) - Web framework
15- [Tailwind CSS](https://tailwindcss.com/) - CSS framework
16- [MDX](https://mdxjs.com/) - Markdown with JSX for content
17- [Cloudflare Pages](https://pages.cloudflare.com/) - Hosting
18
19## Development
20
21### Prerequisites
22
23- [Node.js](https://nodejs.org/) (see `.tool-versions` for version)
24- [Yarn](https://yarnpkg.com/)
25
26### Setup
27
28```bash
29# Clone the repository
30git clone https://github.com/NobbZ/blog-nobbz-dev.git
31cd blog-nobbz-dev
32
33# Install dependencies
34yarn install
35```
36
37### Development Commands
38
39```bash
40# Start development server
41yarn dev
42
43# Build for production
44yarn build
45
46# Preview production build
47yarn preview
48```
49
50## License
51
52- Code: [MIT](./LICENSES/MIT.txt)
53- Content: [CC-BY-4.0](./LICENSES/CC-BY-4.0.txt)
54
55This project is [REUSE](https://reuse.software/) compliant.