An open API service indexing awesome lists of open source software.

https://github.com/alula/bitmap


https://github.com/alula/bitmap

Last synced: 5 months ago
JSON representation

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`
```