tonybark.com/README.md
Tony Bark b8156f6e70 Minor tweaks
- Renamed blog
- Disallowed more bots
- Updated gitignore
- Revised README to make it clear that this is a WhiteWind blog, powered by WhiteBreeze
2024-12-08 15:17:07 -05:00

41 lines
No EOL
925 B
Markdown

# TonyBark.com
A small, self-hosted [WhiteWind](https://whtwnd.com/) blog, powered by [WhiteBreeze](https://github.com/hugeblank/whitebreeze).
## Usage
*[Bun](https://bun.sh/) recommended.*
### Environment variables
Whether in development or production, you will need to change environment variables when working with WhiteBreeze.
```sh
PUBLIC_HANDLE="myhandle.bsky.social" # Your handle, or DID
PUBLIC_ABOUT="Welcome to my blog!" # Optional description of the kinds of posts you'll be making, or a greeting.
# PUBLIC_ABOUT Shows up under your Bluesky profile description in the profile card.
```
### Development
```sh
npm install
npm run dev
```
### Standalone
```
npm install
npm run build
node index.js
```
Put environment variables ahead of the last command, port can also be configured with `PORT`.
### Dockerized
Modify `docker-compose.yaml` and change the host port if necessary.
```
docker compose up
```