diff --git a/README.md b/README.md index c74087a..67e69e3 100644 --- a/README.md +++ b/README.md @@ -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`. diff --git a/project.clj b/project.clj index a08a3d5..bbac0a0 100644 --- a/project.clj +++ b/project.clj @@ -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"]