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