I spent /so/ long looking for that figlet font. __ __ __ / /______ _____/ /_ ____ _/ /_ / //_/ __ \/ ___/ __ \/ __ `/ __ \ / ,< / /_/ / /__/ / / / /_/ / /_/ / /_/|_|\____/\___/_/ /_/\__,_/_.___/docs
parent
16721a7321
commit
b69aba139f
@ -0,0 +1,8 @@
|
||||
*. ,.-*,,..
|
||||
.` `. .,-'` ````--*,,,..
|
||||
.` ;*` ```''-o
|
||||
* ,' __ __ __
|
||||
`. ,' / /______ _____/ /_ ____ _/ /_
|
||||
⭐ / //_/ __ \/ ___/ __ \/ __ `/ __ \
|
||||
/ ,< / /_/ / /__/ / / / /_/ / /_/ /
|
||||
/_/|_|\____/\___/_/ /_/\__,_/_.___/
|
@ -1,5 +0,0 @@
|
||||
__ __ __
|
||||
____ ____ _____/ /_/ /_ _____/ /_____ ______
|
||||
/ __ \/ __ \/ ___/ __/ __ \/ ___/ __/ __ `/ ___/
|
||||
/ / / / /_/ / / / /_/ / / (__ ) /_/ /_/ / /
|
||||
/_/ /_/\____/_/ \__/_/ /_/____/\__/\__,_/_/
|
@ -1,33 +0,0 @@
|
||||
```
|
||||
__ __ __
|
||||
____ ____ _____/ /_/ /_ _____/ /_____ ______
|
||||
/ __ \/ __ \/ ___/ __/ __ \/ ___/ __/ __ `/ ___/
|
||||
/ / / / /_/ / / / /_/ / / (__ ) /_/ /_/ / /
|
||||
/_/ /_/\____/_/ \__/_/ /_/____/\__/\__,_/_/
|
||||
```
|
||||
|
||||
=> 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.3.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
|
||||
```
|
@ -0,0 +1,37 @@
|
||||
```kochab
|
||||
*. ,.-*,,..
|
||||
.` `. .,-'` ````--*,,,..
|
||||
.` ;*` ```''-o
|
||||
* ,' __ __ __
|
||||
`. ,' / /______ _____/ /_ ____ _/ /_
|
||||
⭐ / //_/ __ \/ ___/ __ \/ __ `/ __ \
|
||||
/ ,< / /_/ / /__/ / / / /_/ / /_/ /
|
||||
/_/|_|\____/\___/_/ /_/\__,_/_.___/
|
||||
```
|
||||
|
||||
Kochab is an extension & a fork of the Gemini SDK northstar. Where northstar creates an efficient and flexible foundation for Gemini projects, kochab seeks to be as ergonomic and intuitive as possible, making it possible to get straight into getting your ideas into geminispace, with no worrying about needing to build the tools to get there.
|
||||
|
||||
=> https://github.com/panicbit/northstar Northstar GitHub
|
||||
|
||||
## Usage
|
||||
|
||||
It is currently only possible to use kochab through it's git repo, although it may wind up on crates.rs someday.
|
||||
|
||||
```toml
|
||||
kochab = { git = "https://github.com/Alch-Emi/kochab.git" }
|
||||
```
|
||||
|
||||
## Generating a key & certificate
|
||||
|
||||
Run
|
||||
```sh
|
||||
mkdir cert && cd cert
|
||||
openssl req -x509 -nodes -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
|
||||
```
|
||||
and enter your domain name (e.g. "localhost" for testing) as Common Name (CN).
|
||||
|
||||
Alternatively, if you want to include multiple domains add something like:
|
||||
```
|
||||
-addext "subjectAltName = DNS:localhost, DNS:example.org"
|
||||
```
|
||||
|
Loading…
Reference in new issue