Upversioned to 0.1.0

This commit is contained in:
Simon Brooke 2018-08-19 00:00:05 +01:00
parent 09501f8e4b
commit e96c990b84
2 changed files with 13 additions and 5 deletions

View file

@ -2,6 +2,14 @@
A Clojure app to report and log the current number of users in the fediverse.
This app depends on the API provided by [instances.social](https://instances.social/api/);
I have not investigatged the methodology by which they assemble their list of instances. In
any case it's impossible to tell how many of those accounts represent real individual human
users, and I don't currently do anything to establish how many of those accounts are active.
Please don't use this app to DDoS `instances.social`; it really shouldn't be necessary to run
it more than once a day.
## Configuring
You should obtain a key from [instances.social](https://instances.social/api/token) and write it (just the file, nothing else) into `resources/secret.txt`.

View file

@ -1,8 +1,8 @@
(defproject mastodonusers "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
(defproject mastodonusers "0.1.0"
:description "A Clojure app to report and log the current number of users in the fediverse."
:url "https://github.com/simon-brooke/mastodonusers"
:license {:name "GNU General Public License,version 2.0"
:url "https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.json "0.2.6"]
[clj-http "3.9.1"]