https://github.com/billmei/treehouse-to-linkedin
An "Add to LinkedIn" button to display your accomplishments from Treehouse.
https://github.com/billmei/treehouse-to-linkedin
Last synced: 8 months ago
JSON representation
An "Add to LinkedIn" button to display your accomplishments from Treehouse.
- Host: GitHub
- URL: https://github.com/billmei/treehouse-to-linkedin
- Owner: billmei
- License: mit
- Created: 2015-04-07T23:45:57.000Z (over 10 years ago)
- Default Branch: gh-pages
- Last Pushed: 2019-05-24T14:03:44.000Z (over 6 years ago)
- Last Synced: 2025-01-01T15:26:50.405Z (10 months ago)
- Language: JavaScript
- Homepage: https://billmei.github.io/treehouse-to-linkedin
- Size: 774 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
An "Add to LinkedIn" button to display your accomplishments from Treehouse.
# Demo
https://billmei.github.io/treehouse-to-linkedin
# Install instructions
You need to run a static file serve so that CORS doesn't fail when making an API request to the Treehouse server. If you google "how to run a static file serve in ${LANGUAGE_OF_YOUR_CHOICE}" you'll find instructions for doing that. Alternatively, if you like Python, the simplest way to run a static file serve is to use the following command in the root folder:
```
# Python 2.x
$ python -m SimpleHTTPServer# Python 3.x
$ python -m http.server
```
If you try running this app locally, you'll also need to ensure that you're running from a secure origin (i.e. the protocol is `https` and not `http`). You can do this either by issuing yourself a self-signed cert for development, or use something like [ngrok](https://ngrok.com/) to grab a `https` tunnel to localhost.