Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 432 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 432 Bytes

1 billion checkboxes

https://bitmap.alula.me/

Dev setup

Client:

cd client
cp .env.example .env
pnpm install
pnpm dev

Server:

cd server
cp config.example.toml config.toml
cargo run

Release build

Client:

cd client
pnpm build
# Static site is in `dist/client` directory

Server:

cd server
cargo build --release
# Compiled binary is `target/release/checkboxes-server`