Configure twitter api

This commit is contained in:
Uku Taht 2020-01-16 14:12:12 +02:00
parent b02cb74181
commit 55bca892d1

View File

@ -89,3 +89,10 @@ config :plausible, :google,
config :plausible, Plausible.Mailer,
adapter: Bamboo.PostmarkAdapter,
api_key: System.get_env("POSTMARK_API_KEY")
config :plausible, :twitter, [
consumer_key: System.get_env("TWITTER_CONSUMER_KEY"),
consumer_secret: System.get_env("TWITTER_CONSUMER_SECRET"),
token: System.get_env("TWITTER_ACCESS_TOKEN"),
token_secret: System.get_env("TWITTER_ACCESS_TOKEN_SECRET")
]