A Rust server used for QuickSign to serve install manifests under HTTPS (as required by iOS).
- Go into the server's cloned directory, run
task
orcargo build --release
. - Run your binary which is located at
target/release/plist-server
.
- Go into the server's cloned directory, run
task docker:build
ordocker build -t plist-server .
to build the Docker image. - Run the Docker container using
task docker:run
ordocker run -p 8080:8080 plist-server
.