2025-01-19 01:01:36 +09:00
|
|
|
# moris.day blog source code
|
|
|
|
|
|
|
|
|
|
|
|
## Developing
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# install bun
|
|
|
|
curl -fsSL https://bun.sh/install | bash
|
|
|
|
|
|
|
|
git clone https://git.moris.day/moris/day.moris.blog.git
|
|
|
|
|
2025-01-29 21:09:48 +09:00
|
|
|
cd day.moris.blog
|
2025-01-19 01:01:36 +09:00
|
|
|
|
|
|
|
bun install
|
|
|
|
bun run dev --open
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
```bash
|
|
|
|
bun run build
|
|
|
|
```
|
|
|
|
|
|
|
|
You can preview the production build with `bun run preview`.
|