mirror of
https://github.com/v0l/route96.git
synced 2025-06-15 16:03:00 +00:00
9bcdeabda8c96c8fff18fe78eb9d6540c38f016a
route96
Image hosting service
Features
- NIP-96 Support
- Blossom Support
- Image compression to WebP (FFMPEG, NIP-96 only)
- Blurhash calculation (NIP-96 only)
- AI image labeling (ViT224)
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 supportblossom
: Enable blossom supportlabels
: Enable AI image labeling (Depends onnip96
)
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
Description
Languages
Rust
61.1%
TypeScript
33.9%
HTML
3.1%
Dockerfile
0.8%
CSS
0.6%
Other
0.5%