A http file server made in the Rust web framework Rocket with the template engine Tera
- Install the Rust toolchain
- build with
cargo build --release
- Run the application with
cargo run --release
or with./rockhttp
in the target/release folder
You can use the Dockerized version with:
Docker run -P 8000:8000 luisprgr/rockhttp:latest
Or creating a docker-compose.yml like the following example:
version: "3.3"
services:
rockhttp:
image: luisprgr/rockhttp
container_name: rockhttp
ports:
- 8000:8000
This project is licensed under the following licenses MIT and Apache-2.0 you can choose the one you prefer.