From 780b61d17cc2e040ce39514cff934b23096c73a4 Mon Sep 17 00:00:00 2001 From: Gervasio Marchand Date: Sat, 24 Dec 2022 14:26:31 -0300 Subject: [PATCH] Update README --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d46eb96..c0bd395 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,25 @@ You can pass `MastodonPostgresConnectionString` with a connection string to your } ``` +#### And download all the hashtags pinned by your users! + +If you add `"PinnedTags": true`, you can also populate the hashtags pinned by your users :) thanks [@nberlee](https://github.com/nberlee), this is great! + +``` +{ + "FakeRelayUrl": "https://fakerelay.gervas.io", + "FakeRelayApiKey": "1TxL6m1Esx6tnv4EPxscvAmdQN7qSn0nKeyoM7LD8b9m+GNfrKaHiWgiT3QcNMUA+dWLyWD8qyl1MuKJ+4uHA==", + "MastodonPostgresConnectionString": "Host=myserver;Username=mastodon_read;Password=password;Database=mastodon_production", + "PinnedTags": true, + "Instances": [ "hachyderm.io", "mastodon.social" ] +} +``` + ## How can I run it? There are many ways for you to run GetMoarFediverse: -* [You can run it as a GitHub Action](#running-it-as-a-github-action). Thank you [@chdorner](https://github.com/chdorner)! this is awesome! +* [You can run it as a GitHub Action](#running-it-as-a-github-action). Thank you [@chdorner](https://github.com/chdorner), this is awesome! * This means you don't have to have anything running on your infrastructure! * This also means you need to maintain the list of tags you want to pull (they can't be updated dynamically, as GitHub Actions workers can't connect to your postgres database (hopefully!)) * [You can run a prebuilt executable](#download-a-prebuilt-executable)