aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar fiatjaf <fiatjaf@web>2016-08-06 23:51:48 +0000
committerGravatar admin <admin@branchable.com>2016-08-06 23:51:48 +0000
commit735e4e5f51fb87048d744bd75c023bf322d8c62a (patch)
tree62bff1b1e5af5c44f48b14ac315ac552d7d7a5e4
parentf9b3ef0634bc7e5ec28ce33133218ff9b8ce5d56 (diff)
Added a comment: How I got it working
-rw-r--r--doc/tips/flickrannex/comment_17_5bfe0988260b7825eeec204cd8f79b98._comment31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/tips/flickrannex/comment_17_5bfe0988260b7825eeec204cd8f79b98._comment b/doc/tips/flickrannex/comment_17_5bfe0988260b7825eeec204cd8f79b98._comment
new file mode 100644
index 000000000..200a81aa3
--- /dev/null
+++ b/doc/tips/flickrannex/comment_17_5bfe0988260b7825eeec204cd8f79b98._comment
@@ -0,0 +1,31 @@
+[[!comment format=mdwn
+ username="fiatjaf"
+ subject="How I got it working"
+ date="2016-08-06T23:51:48Z"
+ content="""
+I'm using [pipsi](https://github.com/mitsuhiko/pipsi) to install packages without polluting the system, [Michael's fork](https://github.com/mikemccracken/flickrannex) from magthe's fork from TobiasTheViking repo (I don't know if the other branches are better or worse, but this is working).
+
+## Instructions
+
+**First thing**: go to https://www.flickr.com/services/apps/create/noncommercial/? and create an app (if you use the keys provided in the flickrannex repository you'll be giving access to your flickr to everybody).
+
+Now follow the steps:
+
+```
+wget https://github.com/mikemccracken/flickrannex/archive/master.zip
+unzip master.zip
+cd flickrannex-master/
+edit setup.py # replace 'flickrapi' with 'flickrapi==1.4.5'
+ # otherwise it will install a wrong version of the dependency.
+edit flickrannex # on lines 46 and 47, replace the api_key and api_secret
+ # with the values from the application you created in the
+ # first step.
+pipsi install ./
+cd
+flickrannex # go through the oauth setup, will open a window in the browser
+ # some commands will appear after you're successful. ignore them.
+cd ~/annex # your git-annex folder
+git config annex.flickr-hook $HOME/.local/bin/flickrannex
+git annex initremote flickr type=hook hooktype=flickr encryption=none
+```
+"""]]