Rewrite docs #13

* Refactor examples to all be multi-user structured
* Move configuration into its own file
* Separate config approaches into env/json approaches with guidance on which one to use
* Add more comments to example json
* Simplify main readme and provide a more opinionated, minimal example there
This commit is contained in:
FoxxMD 2020-12-07 16:05:47 -05:00
parent 4c0ff1c9ce
commit ce35b67f37
8 changed files with 214 additions and 145 deletions

View file

@ -1,4 +1,9 @@
{
"url": "https://domain.tld", // the base url of your maloja installation
"apiKey": "string" // your maloja api key
}
[
{
"name": "myMaloja", // required, a name to identify your Client
"data": {
"url": "https://domain.tld", // the base url of your maloja installation
"apiKey": "string" // your maloja api key
}
}
]