.env.sample 576 B

1234567891011121314
  1. # Mastodon Instance Base URL
  2. INSTANCE_BASE="https://yourmastodon.instance"
  3. # Values from Development Application
  4. CLIENT_ID="xxxxxx"
  5. CLIENT_SECRET="xxxxxx"
  6. ACCESS_TOKEN="xxxxxx"
  7. # Welcome message format string.
  8. # {username} will put the user's name.
  9. # {useracct} will use the user's acct value, which on local instances should be identical to the {username}.
  10. WELCOME_MESSAGE="Welcome, @{username}, to this instance!"
  11. # Welcome message visibility: 'direct', 'private', 'unlisted', 'public'
  12. MESSAGE_VISIBILITY="unlisted"
  13. # How long in seconds to wait between checks
  14. WAIT_TIME=300