Updated dependencies

This commit is contained in:
Tony Bark 2024-12-21 18:52:11 -05:00
parent b8156f6e70
commit 5f05bdc6fd
3 changed files with 27 additions and 4 deletions

22
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "npm install",
"command": "npm",
"type": "process",
"args": [
"install"
]
},
{
"label": "npm dev",
"command": "npm",
"type": "process",
"args": [
"run",
"dev"
]
},
]
}

View file

@ -1,10 +1,10 @@
# TonyBark.com
A small, self-hosted [WhiteWind](https://whtwnd.com/) blog, powered by [WhiteBreeze](https://github.com/hugeblank/whitebreeze).
A small, self-hosted [WhiteWind](https://github.com/whtwnd/whitewind-blog) blog, powered by [WhiteBreeze](https://github.com/hugeblank/whitebreeze).
## Usage
*[Bun](https://bun.sh/) recommended.*
_[Bun](https://bun.sh/) recommended._
### Environment variables
@ -30,6 +30,7 @@ npm install
npm run build
node index.js
```
Put environment variables ahead of the last command, port can also be configured with `PORT`.
### Dockerized
@ -38,4 +39,4 @@ Modify `docker-compose.yaml` and change the host port if necessary.
```
docker compose up
```
```

View file

@ -41,4 +41,4 @@
"sanitize-html": "^2.13.1",
"unified": "^11.0.5"
}
}
}