summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAthanasius <[email protected]>2021-05-28 19:03:17 +0100
committerAthanasius <[email protected]>2021-05-28 19:03:17 +0100
commit2941d5cead6d9e38c837c4b53f54b15c125fa7d2 (patch)
treefa32fae1a90986d31f55a833f644d133de62fddc
parent12116f6abb2d322fb1a4d4f27683561a3b331a41 (diff)
Add README.md with basic installation instructions
-rw-r--r--README.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..4b85462
--- /dev/null
+++ b/README.md
@@ -0,0 +1,31 @@
+# Google Reader Keys
+This is a Tiny Tiny RSS plugin to have keyboard shortcuts in the style
+of the long-since defunct Google Reader, but with extra tweaks for later
+Tiny Tiny RSS functionality.
+
+## Installation
+Assuming that you're using the recommended Docker Compose setup, then
+the easiest way to install the plugin `init.php` file is to use these docker
+commands. This assumes that the current directory is where this README.md
+and the init.php are:
+
+ ```sh
+ docker exec ttrss-docker_app_1 /bin/mkdir /var/www/html/tt-rss/plugins.local/googlereaderkeys
+ docker cp init.php ttrss-docker_app_1:/var/www/html/tt-rss/plugins.local/googlereaderkeys
+ docker exec ttrss-docker_app_1 /bin/chown -R app:app /var/www/html/tt-rss/plugins.local/googlereaderkeys
+ docker exec ttrss-docker_app_1 /bin/chmod -R og+rX /var/www/html/tt-rss/plugins.local/googlereaderkeys
+ ```
+
+If you're not using the Docker Compose setup then you'll have to execute
+the non-Docker equivalent. The key thing is to:
+
+ 1. Make a directory for this plugin, called `googlereaderkeys` (not
+ anything else, it has to match up with the class name in
+ init.php) inside your `plugins.local` directory.
+ 1. Copy the `init.php` file from here into that new directory.
+ 1. Ensure the owner and permissions are such that your web server
+ can access the directory and file.
+
+Now if you reload tt-rss in your browser and check the Plugins part of
+Preferences you should have a "googlereaderkeys" entry that you can
+activate.