From 4b3ba3f5ae7c39cbf3b6a1429d278ed646f0f50b Mon Sep 17 00:00:00 2001 From: panicbit Date: Sat, 31 Oct 2020 21:05:10 +0100 Subject: [PATCH] add example public folder --- public/README.gemini | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 public/README.gemini diff --git a/public/README.gemini b/public/README.gemini new file mode 100644 index 0000000..09436c0 --- /dev/null +++ b/public/README.gemini @@ -0,0 +1,33 @@ +``` + __ __ __ + ____ ____ _____/ /_/ /_ _____/ /_____ ______ + / __ \/ __ \/ ___/ __/ __ \/ ___/ __/ __ `/ ___/ + / / / / /_/ / / / /_/ / / (__ ) /_/ /_/ / / +/_/ /_/\____/_/ \__/_/ /_/____/\__/\__,_/_/ +``` + +=> https://docs.rs/northstar Documentation +=> https://github.com/panicbit/northstar GitHub + +# Usage + +Add the latest version of northstar to your `Cargo.toml`. + +## Manually + +```toml +northstar = "0.1.0" # check crates.io for the latest version +``` + +## Automatically + +```sh +cargo add northstar +``` + +# Generating a key & certificate + +```sh +mkdir cert && cd cert +openssl req -x509 -nodes -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 +```