Files
lolisland.us/README.md

1.6 KiB

lolisland.us

English | 简体中文

GitHub stars GitHub forks Repo size Top Language

Build and Develop

git clone https://github.com/101island/lolisland.us
cd lolisland.us

Switch to dev branch

git checkout dev

Install dependencies

bun install

Develop

bun dev

Build

bun run build

Chat Storage on Cloudflare

Create the following bindings in Cloudflare Pages for this project:

  • CHAT_DB: D1 database binding for chat messages.
  • CHAT_IMAGES: R2 bucket binding for chat image uploads.

The chat API auto-creates the chat_messages table and index on first request.

Release Instructions

  • Submit code to the dev branch.
git pull
git commit -m "your commit message"
git push origin dev

After submission, you can view the commit effect on the dev branch at dev.lolisland.pages.dev.

  • After confirming everything is fine, create a Pull Request to merge into the main branch.

  • Please use a normal merge (Merge Commit) for merging branches, not a squash merge.