start docs with jekyll

and just the docs
This commit is contained in:
lesion
2019-07-12 23:20:55 +02:00
parent c3902a6d64
commit f63d32c067
15 changed files with 423 additions and 0 deletions

43
docs/settings.md Normal file
View File

@@ -0,0 +1,43 @@
---
layout: default
title: Settings
permalink: /settings
nav_order: 3
---
# Settings
{: .no_toc }
1. TOC
{:toc}
## Default settings
```json
{
"title": "Gancio",
"description": "A shared agenda for local communities",
"baseurl": "http://localhost:13120",
"server": {
"host": "0.0.0.0",
"port": 13120
},
"db": {
"dialect": "sqlite",
"storage": "/tmp/db.sqlite"
},
"upload_path": "./",
"smtp": {
"auth": {
"user": "",
"pass": ""
},
"secure": true,
"host": ""
},
"admin": {
"email": "",
"password": ""
},
"secret": "notsosecret"
}
```