mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Version v0.3.0-alpha.27
This commit is contained in:
parent
ccef9cb8a2
commit
ce7056ad61
4 changed files with 26 additions and 15 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -925,7 +925,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
version = "0.3.0-alpha.26"
|
version = "0.3.0-alpha.27"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-form-data",
|
"actix-form-data",
|
||||||
"actix-rt",
|
"actix-rt",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
description = "A simple image hosting service"
|
description = "A simple image hosting service"
|
||||||
version = "0.3.0-alpha.26"
|
version = "0.3.0-alpha.27"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
license = "AGPL-3.0"
|
license = "AGPL-3.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
33
README.md
33
README.md
|
@ -9,7 +9,7 @@ _a simple image hosting service_
|
||||||
## Usage
|
## Usage
|
||||||
### Running
|
### Running
|
||||||
```
|
```
|
||||||
pict-rs 0.3.0-alpha.22
|
pict-rs 0.3.0-alpha.27
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
pict-rs [FLAGS] [OPTIONS] --path <path>
|
pict-rs [FLAGS] [OPTIONS] --path <path>
|
||||||
|
@ -20,17 +20,28 @@ FLAGS:
|
||||||
-V, --version Prints version information
|
-V, --version Prints version information
|
||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
-a, --addr <addr> The address and port the server binds to. [env: PICTRS_ADDR=] [default:
|
-a, --addr <addr>
|
||||||
0.0.0.0:8080]
|
The address and port the server binds to. [env: PICTRS_ADDR=] [default: 0.0.0.0:8080]
|
||||||
--api-key <api-key> An optional string to be checked on requests to privileged endpoints [env:
|
|
||||||
PICTRS_API_KEY=]
|
--api-key <api-key>
|
||||||
-f, --format <format> An optional image format to convert all uploaded files into, supports 'jpg',
|
An optional string to be checked on requests to privileged endpoints [env: PICTRS_API_KEY=]
|
||||||
'png', and 'webp' [env: PICTRS_FORMAT=]
|
|
||||||
-m, --max-file-size <max-file-size> Specify the maximum allowed uploaded file size (in Megabytes) [env:
|
-f, --format <format>
|
||||||
PICTRS_MAX_FILE_SIZE=] [default: 40]
|
An optional image format to convert all uploaded files into, supports 'jpg', 'png', and 'webp' [env:
|
||||||
|
PICTRS_FORMAT=]
|
||||||
|
-m, --max-file-size <max-file-size>
|
||||||
|
Specify the maximum allowed uploaded file size (in Megabytes) [env: PICTRS_MAX_FILE_SIZE=] [default: 40]
|
||||||
|
|
||||||
|
--max-image-height <max-image-height>
|
||||||
|
Specify the maximum width in pixels allowed on an image [env: PICTRS_MAX_IMAGE_HEIGHT=] [default: 10000]
|
||||||
|
|
||||||
|
--max-image-width <max-image-width>
|
||||||
|
Specify the maximum width in pixels allowed on an image [env: PICTRS_MAX_IMAGE_WIDTH=] [default: 10000]
|
||||||
|
|
||||||
-p, --path <path> The path to the data directory, e.g. data/ [env: PICTRS_PATH=]
|
-p, --path <path> The path to the data directory, e.g. data/ [env: PICTRS_PATH=]
|
||||||
-w, --whitelist <whitelist>... An optional list of filters to whitelist, supports 'identity', 'thumbnail',
|
-w, --whitelist <whitelist>...
|
||||||
and 'blur' [env: PICTRS_FILTER_WHITELIST=]
|
An optional list of filters to whitelist, supports 'identity', 'thumbnail', and 'blur' [env:
|
||||||
|
PICTRS_FILTER_WHITELIST=]
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Example:
|
#### Example:
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: '3.3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
pictrs:
|
pictrs:
|
||||||
image: asonix/pictrs:v0.3.0-alpha.26-r2
|
image: asonix/pictrs:v0.3.0-alpha.27
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:8080:8080"
|
- "127.0.0.1:8080:8080"
|
||||||
restart: always
|
restart: always
|
||||||
|
|
Loading…
Reference in a new issue