diff options
author | thea <ta.kupler@gmail.com> | 2016-09-23 16:08:27 +0200 |
---|---|---|
committer | thea <ta.kupler@gmail.com> | 2016-09-23 16:08:27 +0200 |
commit | d18ad52a8bd35c53b5dee5041527f313aa18015a (patch) | |
tree | 6426713b247d0ce686c221779e7acb6df3c99df3 /doc | |
parent | a5958e51fbf106fa841a7aca444b705600714585 (diff) | |
parent | 873ba38715bb0e08f39a1effd64a26e9d05af78b (diff) |
merging develop and marie
Diffstat (limited to 'doc')
-rw-r--r-- | doc/TWITTER_FEED.md | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/doc/TWITTER_FEED.md b/doc/TWITTER_FEED.md index 3e54a4d..552dc54 100644 --- a/doc/TWITTER_FEED.md +++ b/doc/TWITTER_FEED.md @@ -19,12 +19,29 @@ LEAP web app (as part of the main view). * Activate the feature within your local LEAP Web Application * If not already existing create a secrets-file in /config with the name secrets.yml (`/config/secrets.yml`) * Secrets-file should contain the following, make sure its in YAML: {"development"=> {"twitter"=>{"enabled"=>false, "twitter_handle"=>"", "bearer_token"=>"", "twitter_picture"=>nil}}, "test"=>{"twitter"=>{"enabled"=>false, "twitter_handle"=>"", "bearer_token"=>"", "twitter_picture"=>nil}}} +``` +development: + twitter: + enabled: false # set to true for usage + twitter_handle: XXXXX #put your twitter handle here + bearer_token: XXXXX #put your bearer token here +test: + twitter: + enabled: false # set to true for usage + twitter_handle: XXXXX #put your twitter handle here + bearer_token: XXXXX #put your bearer token here +production: + twitter: + enabled: false # set to true for usage + twitter_handle: XXXXX #put your twitter handle here + bearer_token: XXXXX #put your bearer token here +``` * To have your bearer token created, run script in terminal being in the file of leap_web: `script/generate_bearer_token` * To have the script run properly you have to add before running: `--key your_consumerkey --secret your_consumersecret` * Add also `--projectroot your_projectroot --twitterhandle your_twitterhandle` as well to not have manually put the data in your secrets-file * The full command looks like this: `script/generate_bearer_token --key your_consumerkey --secret your_consumersecret --projectroot your_projectroot --twitterhandle your_twitterhandle` * If you didn't give all your information to the script, had a typo or want to change anything else, please do so by finding the secrets-file at `/config/secrets.yml` - * Make sure that the correct twitter handle and bearer token is included + * Make sure that the correct twitter-handle and bearer-token is included. The tweets of the twitter-account you want to have shown have to be public! * Deactivate your bearer token * To deactivate your generated bearer token you can run script/invalidate_bearer_token |