datatrash/README.md

42 lines
941 B
Markdown
Raw Normal View History

2020-07-09 20:01:25 +00:00
# datatrash
A file and text uploading service with configurable time limit
![Application screenshot](./screenshot.png)
## compiling
2020-07-12 01:16:17 +00:00
```sh
cargo build --release
```
or
```sh
docker build -t datatrash .
docker cp datatrash:/home/rust/.cargo/bin/datatrash datatrash
```
2020-07-09 20:01:25 +00:00
or, to just run it in docker
2020-07-09 20:01:25 +00:00
```sh
docker-compose up -d --build
```
2020-07-09 20:01:25 +00:00
## running & config
The static files directory needs to be next to the binary.
| environment variable | default value |
| -------------------- | -------------------- |
| DATABASE_URL | |
| DATABASE_USER | |
| DATABASE_PASS | |
| DATABASE_HOST | localhost |
| DATABASE_NAME | datatrash |
| FILES_DIR | ./files |
| UPLOAD_MAX_BYTES | 8388608 (8MiB) |
| BIND_ADDRESS | 0.0.0.0:8000 |
2020-07-09 20:01:25 +00:00
The maximum filename length is 255