diff options
author | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-19 14:11:29 +0200 |
---|---|---|
committer | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-19 14:11:29 +0200 |
commit | 20455b401e79b33687318aff91a7379503a5b748 (patch) | |
tree | 3b302ccd22a5d88aaa9cc25e02265b7f190235c9 | |
parent | a413f5db697fd7f568aa3dd8e9d1406176cb924c (diff) | |
download | reddit-nextcloud-importer-20455b401e79b33687318aff91a7379503a5b748.tar.gz reddit-nextcloud-importer-20455b401e79b33687318aff91a7379503a5b748.tar.bz2 reddit-nextcloud-importer-20455b401e79b33687318aff91a7379503a5b748.zip |
ref: Improve README
-rw-r--r-- | README.md | 28 |
1 files changed, 27 insertions, 1 deletions
@@ -2,4 +2,30 @@ # Reddit Nextcloud importer -A process to import images and videos from saved post on reddit to a instance of Nextcloud. +A process to import images and videos from saved post on reddit to a instance of +Nextcloud. + + +# Environment variables + +* `CLIENT_ID` and `CLIENT_SECRET`: crendentials needed to access Reddit's API. + To get those info you'd need: + * Go to [authorized application page](https://www.reddit.com/prefs/apps) + * Click on `Create another app...` button on the bottom of the page. + * Input the information and choose `script`. + * You can use `http://localhost:8080` on `redirect uri` field as you won't + need to use it. + +* `REDDIT_USERNAME` and `REDDIT_PASSWORD`: user credenctial to access Reddit's + API. Because you chose `script` this user need to be listed as a developer in + the application page. To add a new user as a developer go to [authorized + application page](https://www.reddit.com/prefs/apps) and click on the `edit` + button on the application you just created. It will open a field `add + developer`. + +* `NEXTCLOUD_HOST`: the host domain a port for the nextcloud instance. + +* `NEXTCLOUD_USERNAME` and `NEXTCLOUD_PASSWORD`: user credential for the + nextcloud instance. + +* `NEXTCLOUD_PATH`: root folder for where all the images will be saved. |