layout | title | description | longdescription | date | category | (!CanRemoveIfFalse)press_release | (!CanRemoveIfFalse)is_non-tech | banner | author | design | tags | related | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
post |
Title Should be Less Than 56 characters |
Description goes here and must be less than 156 characters. |
Long description is used for meta tags, particularly for Google, and should be between 230-320 characters. |
2018-01-01 8:30 |
Technical guide, Thing, Thing2, PR, Press |
true |
true |
|
|
|
|
|
TL;DR: A brief synopsis that includes link to a github repo.

[Link text](http://url.goes.here)
> _"Sample quote from someone cool."_ —Someone Cool
> **Note:** Blockquote note text
Note: It's necessary to use curly brace tags instead of backticks when code samples mess up the Jekyll blog engine formatting:
{% highlight html %}
{% raw %}
{{use raw tag when curly braces are present}}
<link rel="stylesheet" src="or when external stylesheets are called, such as CDN Bootstrap">
{% endraw %}
{% endhighlight %}
js
typescript
css
scss
$ bash
text
- Em dash:
—
(don't use hyphens for this) - Mac shortcut:Shift
+Alt
+-
- Lambda:
λ
HTML is required with a target="_self"
because the blog programming will automatically open all links in a new window unless this is specified. Markdown anchor links do not work.
<a href="#some-target" target="_self">Link to Target</a>
### <span id="#some-target"></span>Target
{% include tweet_quote.html quote_text="Lorem ipsum dolor sit amet." %}
Important Note: Make sure this is updated to reflect the appropriate application type, allowed callback settings, and API identifier when pasting into a post.
You'll need an Auth0 account to manage authentication. You can sign up for a free Auth0 account here. Next, set up an Auth0 Client and API so Auth0 can interface with your app and API.
- Go to your Auth0 Dashboard and click the "create a new client" button.
- Name your new app, select "Single Page Web Applications", and click the "Create" button.
- In the Settings for your new Auth0 client app, add
http://localhost:[PORT]
to the Allowed Callback URLs. - Click the "Save Changes" button.
- If you'd like, you can set up some social connections. You can then enable them for your app in the Client options under the Connections tab. The example shown in the screenshot above utilizes username/password database, Facebook, Google, and Twitter.
Note: Under the OAuth tab of Advanced Settings (at the bottom of the Settings section) you should see that the JsonWebToken Signature Algorithm is set to
RS256
. This is the default for new clients. If it is set toHS256
, please change it toRS256
. You can read more about RS256 vs. HS256 JWT signing algorithms here.
- Go to APIs in your dashboard and click on the "Create API" button.
- Enter a name for the API. Set the Identifier to your API's URL. In this example, this is
http://localhost:[PORT]/api/
. The Signing Algorithm should beRS256
.