2022-11-14 00:43:55 +00:00
|
|
|
# Roulette
|
|
|
|
Serve a random image!
|
|
|
|
|
2022-11-14 01:05:19 +00:00
|
|
|
## Usage
|
|
|
|
```
|
|
|
|
Serve a random image!
|
|
|
|
|
|
|
|
Usage: roulette-rs [OPTIONS] [PATHS]...
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
[PATHS]... Paths to search for images in
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-b, --bind <BIND> IP to bind to when serving on [default: 0.0.0.0]
|
|
|
|
-p, --port <PORT> Port to serve the http server on [default: 8080]
|
|
|
|
-r, --recursive Whether or not to recursively search for images in supplied paths
|
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
|
|
|
```
|
|
|
|
|
2022-11-14 00:43:55 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
This project is a rust rewrite of a [friend's project](https://git.seedno.de/seednode/roulette) that I did for fun.
|