https://github.com/alula/bitmap
https://github.com/alula/bitmap
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alula/bitmap
- Owner: alula
- License: other
- Created: 2024-08-31T21:54:56.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-07T13:59:50.000Z (over 1 year ago)
- Last Synced: 2024-09-07T17:44:24.210Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://bitmap.alula.me
- Size: 126 KB
- Stars: 14
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 1 billion checkboxes
https://bitmap.alula.me/
## Dev setup
Client:
```bash
cd client
cp .env.example .env
pnpm install
pnpm dev
```
Server:
```bash
cd server
cp config.example.toml config.toml
cargo run
```
## Release build
Client:
```bash
cd client
pnpm build
# Static site is in `dist/client` directory
```
Server:
```bash
cd server
cargo build --release
# Compiled binary is `target/release/checkboxes-server`
```