From 8fca29162d117a9b5592d95816e95cfd71d7c01d Mon Sep 17 00:00:00 2001 From: Christian Quest Date: Sun, 23 Apr 2017 18:51:37 +0200 Subject: [PATCH 1/4] munin graph for your mastodon instance --- Running-Mastodon/Administration-guide.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Running-Mastodon/Administration-guide.md b/Running-Mastodon/Administration-guide.md index aa474cc..9941b03 100644 --- a/Running-Mastodon/Administration-guide.md +++ b/Running-Mastodon/Administration-guide.md @@ -62,6 +62,12 @@ only have a user record and an avatar record, with no files uploaded. This will create a new user as if they had walked through the registration process and confirmed their account, and will immediately be able to log in. Make sure the user resets their password away from the temporary password you give them! +## Activity monitoring + +Munin graphs can be generated to track your instance activity. + +* https://github.com/cquest/mastodon-munin-plugins + ## Mastodon-admin mailing list There's a mailing list open for mastodon instance admins at From 2014a0a7def3106cfea85d12ae6efed04075efb6 Mon Sep 17 00:00:00 2001 From: Benjamin Schieder Date: Mon, 24 Apr 2017 10:30:23 +0200 Subject: [PATCH 2/4] Update Apps.md add RSSTootalizer, a service to toot RSS feeds --- Using-Mastodon/Apps.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Using-Mastodon/Apps.md b/Using-Mastodon/Apps.md index 1e11f7a..aca25fe 100644 --- a/Using-Mastodon/Apps.md +++ b/Using-Mastodon/Apps.md @@ -26,6 +26,7 @@ Some people have started working on apps for the Mastodon API. Here is a list of |---|--------|----|------------| |Retoot|CLI||[@Mojo@apoil.org](https://apoil.org/users/mojo)| |Mastodon.tools|Wordpress, web browser, social network||[@David@mastodon.xyz](https://mastodon.xyz/users/David)| +|RSSTootalizer|Web browser||[@blindcoder@toot.berlin](https://toot.berlin/users/blindcoder)| ## Bots From fbb0f346c357d415351b4ba93f29d8dba9cda571 Mon Sep 17 00:00:00 2001 From: 178inaba <178inaba@users.noreply.github.com> Date: Mon, 24 Apr 2017 22:21:23 +0900 Subject: [PATCH 3/4] Add yarn install option --- Running-Mastodon/Development-guide.md | 2 +- Running-Mastodon/Production-guide.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Running-Mastodon/Development-guide.md b/Running-Mastodon/Development-guide.md index 298138d..81d4a4e 100644 --- a/Running-Mastodon/Development-guide.md +++ b/Running-Mastodon/Development-guide.md @@ -17,7 +17,7 @@ The command to install Ruby project dependencies does not require any flags, i.e Similarly, installing JavaScript dependencies doesn't require any flags: - yarn install + yarn install --pure-lockfile By default the development environment wants to connect to a `mastodon_development` database on localhost using your user/ident to login to Postgres (i.e. not a md5 password) diff --git a/Running-Mastodon/Production-guide.md b/Running-Mastodon/Production-guide.md index a8453fa..073c7ae 100644 --- a/Running-Mastodon/Production-guide.md +++ b/Running-Mastodon/Production-guide.md @@ -175,7 +175,7 @@ Then you can proceed to install project dependencies: gem install bundler bundle install --deployment --without development test - yarn install + yarn install --pure-lockfile ## Configuration @@ -298,7 +298,7 @@ As part of your deploy, you may need to run: if anything in the `/db/` directory has changed, and/or -- `yarn install` +- `yarn install --pure-lockfile` - `RAILS_ENV=production bundle exec rails assets:precompile` if anything in the `/app/assets` directory changed. From 078d90f5ad5282f093584753565bdfc5b13bca9c Mon Sep 17 00:00:00 2001 From: Ryo Okubo Date: Mon, 24 Apr 2017 23:14:25 +0900 Subject: [PATCH 4/4] Add a Haskell lib --- Using-the-API/API.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Using-the-API/API.md b/Using-the-API/API.md index b866d7e..1187f78 100644 --- a/Using-the-API/API.md +++ b/Using-the-API/API.md @@ -54,6 +54,7 @@ ___ - [For .Net](https://github.com/Tlaster/Mastodon.Net) - [For Java, Kotlin](https://github.com/sys1yagi/mastodon4j) - [For C#](https://github.com/pawotter/mastodon-api-cs) +- [For Haskell](https://github.com/syucream/hastodon) ___