X-Git-Url: https://awoo.directory/mastodon.git/blobdiff_plain/ab4f5f5da5229bbc33f3c86815eaf1e057c697b1..2a5dee0f08e431d90368db08dccdf87ef112163f:/app.json diff --git a/app.json b/app.json index c0579d33e..211f17d81 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "name": "Mastodon", "description": "A GNU Social-compatible microblogging server", "repository": "https://github.com/tootsuite/mastodon", - "logo": "https://github.com/tootsuite/mastodon/raw/master/app/assets/images/logo.png", + "logo": "https://github.com/tootsuite.png", "env": { "HEROKU": { "description": "Leave this as true", @@ -13,19 +13,14 @@ "description": "The domain that your Mastodon instance will run on (this can be appname.herokuapp.com or a custom domain)", "required": true }, - "LOCAL_HTTPS": { - "description": "Will your domain support HTTPS? (Automatic for herokuapp, requires manual configuration for custom domains)", - "value": "false", - "required": true - }, - "PAPERCLIP_SECRET": { - "description": "The secret key for storing media files", - "generator": "secret" - }, "SECRET_KEY_BASE": { "description": "The secret key base", "generator": "secret" }, + "OTP_SECRET": { + "description": "One-time password secret", + "generator": "secret" + }, "SINGLE_USER_MODE": { "description": "Should the instance run in single user mode? (Disable registrations, redirect to front page)", "value": "false", @@ -71,9 +66,28 @@ "SMTP_DOMAIN": { "description": "Domain for SMTP server. Will default to instance domain if blank.", "required": false + }, + "SMTP_FROM_ADDRESS": { + "description": "Address to send emails from", + "required": false + }, + "SMTP_AUTH_METHOD": { + "description": "Authentication method to use with SMTP server. Default is 'plain'.", + "required": false + }, + "SMTP_OPENSSL_VERIFY_MODE": { + "description": "SMTP server certificate verification mode. Defaults is 'peer'.", + "required": false + }, + "SMTP_ENABLE_STARTTLS_AUTO": { + "description": "Enable STARTTLS if SMTP server supports it? Default is true.", + "required": false } }, "buildpacks": [ + { + "url": "https://github.com/heroku/heroku-buildpack-apt" + }, { "url": "heroku/nodejs" }, @@ -88,4 +102,4 @@ "heroku-postgresql", "heroku-redis" ] -} \ No newline at end of file +}