app-store/apps/mastodon/config.json
DrMxrcy 34ab4a2a69
Add Mastodon (#538)
* Add Mastodon

* Add Vapid Keys and Fix Internal Network

* Update Sidekiq

* Update Install

* Update Install CMDs

* Trying the LinuxServer Image

* Update port

* Change Path

* Remove Streaming

* traefik updates

* Remove Command

* Update docker-compose.yml

* Update docker-compose.yml

* Change Traefik

* Update

* Update config.json

* Update Configs

* Add Version Warning

* Update Local Domain

* Update Version

* Add ES

* Test ES

* Update Path

* Remove ES, Revert Final Build
2023-05-23 16:07:33 -04:00

95 lines
2.4 KiB
JSON

{
"$schema": "../schema.json",
"name": "Mastodon",
"port": 8210,
"available": true,
"exposable": true,
"force_expose": true,
"generate_vapid_keys": true,
"id": "mastodon",
"tipi_version": 1,
"version": "4.1.2",
"categories": ["social"],
"description": "Your self-hosted, globally interconnected microblogging community",
"short_desc": "Your self-hosted, globally interconnected microblogging community",
"author": "Mastodon",
"source": "https://github.com/mastodon/mastodon",
"form_fields": [
{
"type": "random",
"label": "Mastodon Redis Password",
"min": 32,
"max": 32,
"env_variable": "MASTODON_REDIS_PASSWORD"
},
{
"type": "random",
"label": "Mastodon Postgres Password",
"min": 32,
"max": 32,
"env_variable": "MASTODON_POSTGRES_PASSWORD"
},
{
"type": "random",
"label": "Mastodon Secret Key Base",
"min": 64,
"max": 64,
"env_variable": "MASTODON_SECRET_KEY_BASE"
},
{
"type": "random",
"label": "Mastodon OTP Secret",
"min": 64,
"max": 64,
"env_variable": "MASTODON_OTP_SECRET"
},
{
"type": "text",
"label": "SMTP Host",
"hint": "Your SMTP Server",
"placeholder": "smtp.example.com",
"required": true,
"env_variable": "MASTODON_SMTP_SERVER"
},
{
"type": "text",
"label": "SMTP Port",
"hint": "Your SMTP Port",
"placeholder": "25",
"required": true,
"env_variable": "MASTODON_SMTP_PORT"
},
{
"type": "text",
"label": "SMTP Username",
"hint": "Your SMTP Server User/Username",
"placeholder": "noreply@example.com",
"required": true,
"env_variable": "MASTODON_SMTP_LOGIN"
},
{
"type": "text",
"label": "SMTP Password",
"hint": "Your SMTP Server Password",
"required": true,
"env_variable": "MASTODON_SMTP_PASSWORD"
},
{
"type": "text",
"label": "SMTP From Address",
"hint": "Make sure the Format is like noreply@example.com",
"placeholder": "noreply@example.com",
"required": true,
"env_variable": "MASTODON_SMTP_FROM_ADDRESS"
},
{
"type": "text",
"label": "Mastodon Local domain",
"hint": "Could be the same of the Exposed Domain. Ex: social.example.com",
"placeholder": "example.com",
"required": true,
"env_variable": "MASTODON_LOCAL_DOMAIN"
}
]
}