app-store/apps/flatnotes/config.json
Nicolas Meienberger ee6467ad1c local domain configs A-G (#676)
* feat(actual-budget): change config to support local domain

* feat(adguard): change config to support local domain

* feat(autobrr): change config to support local domain

* feat(barrage): change config to support local domain

* feat(bazarr): change config to support local domain

* feat(booksonic): change config to support local domain

* feat(bookstack): change config to support local domain

* feat(calibre-web): change config to support local domain

* feat(chatgpt-ui): change config to support local domain

* feat(chatpad): change config to support local domain

* feat(code-server): change config to support local domain

* feat(codex-docs): change config to support local domain

* feat(dailytxt): change config to support local domain

* feat(dashdot): change config to support local domain

* feat(deemix): change config to support local domain

* feat(deluge): change config to support local domain

* feat(dokuwiki): change config to support local domain

* feat(dozzle): change config to support local domain

* feat(duplicati): change config to support local domain

* feat(emulatorjs): change config to support local domain

* feat(excalidraw): change config to support local domain

* feat(filebrowser): change config to support local domain

* feat(filestash): change config to support local domain

* feat(firefly-iii): change config to support local domain

* feat(fireshare): change config to support local domain

* feat(flatnotes): change config to support local domain

* feat(freshrss): change config to support local domain

* feat(ghost): change config to support local domain

* feat(gitea): change config to support local domain

* feat(gotify): change config to support local domain

* feat(gotosocial): change config to support local domain

* feat(grafana): change config to support local domain

* feat(grav): change config to support local domain

* feat(grocy): change config to support local domain
2023-06-11 13:33:34 +02:00

53 lines
1.3 KiB
JSON

{
"$schema": "../schema.json",
"name": "flatnotes",
"available": true,
"exposable": true,
"id": "flatnotes",
"port": 8137,
"tipi_version": 7,
"version": "3.1.0",
"categories": ["utilities"],
"description": "A self-hosted, database-less note taking web app that utilises a flat folder of markdown files for storage.",
"short_desc": "A self-hosted, database-less note taking web app",
"author": "Dullage",
"source": "https://github.com/Dullage/flatnotes",
"website": "https://demo.flatnotes.io/",
"form_fields": [
{
"type": "text",
"label": "Flatnotes Auth Type",
"hint": "Either `password` or `totp` for 2FA",
"placeholder": "password",
"required": true,
"env_variable": "FLATNOTES_AUTH_TYPE"
},
{
"type": "text",
"label": "Flatnotes Username",
"min": 2,
"required": true,
"env_variable": "FLATNOTES_USERNAME"
},
{
"type": "text",
"label": "Flatnotes Password",
"min": 5,
"required": true,
"env_variable": "FLATNOTES_PASSWORD"
},
{
"type": "random",
"label": "FLATNOTES_SECRET_KEY",
"min": 32,
"env_variable": "FLATNOTES_SECRET_KEY"
},
{
"type": "random",
"label": "FLATNOTES_TOTP_KEY",
"min": 32,
"env_variable": "FLATNOTES_TOTP_KEY"
}
]
}