NIP-96 / Blossom file host service https://files.v0l.io
Go to file
kieran 2b194ad10c
All checks were successful
continuous-integration/drone/push Build is passing
feat: admin list
2024-10-04 18:00:37 +01:00
migrations feat: admin list 2024-10-04 18:00:37 +01:00
src feat: admin list 2024-10-04 18:00:37 +01:00
ui_src feat: admin list 2024-10-04 18:00:37 +01:00
.dockerignore Include default config 2024-05-02 10:43:02 +01:00
.drone.yml feat: admin list 2024-10-04 18:00:37 +01:00
.gitignore Compress images 2024-05-10 11:54:40 +01:00
build.rs Automatic image labeling 2024-05-14 17:06:35 +01:00
Cargo.lock feat: admin list 2024-10-04 18:00:37 +01:00
Cargo.toml feat: admin list 2024-10-04 18:00:37 +01:00
config.prod.toml feat: rename / upgrades 2024-09-22 14:26:59 +01:00
config.toml feat: plausible analytics 2024-09-26 23:57:28 +01:00
docker-compose.prod.yml feat: admin list 2024-10-04 18:00:37 +01:00
docker-compose.yml feat: admin list 2024-10-04 18:00:37 +01:00
Dockerfile feat: build with labels for docker 2024-09-29 12:58:17 +01:00
README.md feat: admin list 2024-10-04 18:00:37 +01:00

route96

Image hosting service

Features

Planned

  • Torrent seed V2

Running

Docker Compose

The easiest way to run route96 is to use docker compose

docker compose -f docker-compose.prod.yml up

Manual

Assuming you already created your config.toml and configured the database run:

docker run --rm -it \
  -p 8000:8000 \
  -v ./config.toml:/app/config.toml \
  -e "RUST_LOG=info" \
  voidic/route96

Building

Feature Flags

Default = nip96 & blossom

  • nip96: Enable NIP-96 support
  • blossom: Enable blossom support
  • labels: Enable AI image labeling (Depends on nip96)

Default build:

cargo build --release

Build only Blossom support

cargo build --release --no-default-features --features blossom

Build dependencies

If you want to support NIP-96 you will need the following dependencies:

libavcodec-dev libavformat-dev libswscale-dev libavutil-dev libavdevice-dev libavfilter-dev