From f35c319a6f0201a6e8b27e34fb0217d934ec29e1 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Sat, 2 Apr 2016 07:16:20 -0700 Subject: [PATCH] Update Auth.elm instructions --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 116d8c0..4fc61de 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,21 @@ the Search API, these steps can be done either on your personal GitHub account o 1. Visit https://github.com/settings/tokens/new 2. Enter "Elm Workshop" under "Token description" and leave everything else blank. -3. Create the token and copy it into `Auth.elm`. +3. Create the token and copy it into a new file called `Auth.elm`: + +*Auth.elm* + +```elm +module Auth (token) where + + +token = + -- Your token should go here instead of this sample token: + "abcdef1234567890abcdef1234567890abcdef12" +``` + +*Note:* Auth.elm is in `.gitignore` to avoid accidentally checking in an API +secret. ## Start with Stage 1