Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 948 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 948 Bytes

TonyBark.com

A small, self-hosted WhiteWind blog, powered by WhiteBreeze.

Usage

Bun recommended.

Environment variables

Whether in development or production, you will need to change environment variables when working with WhiteBreeze.

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

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