From e4cf3f50283e9cc21eaee5a8e37bc76b9d5571d7 Mon Sep 17 00:00:00 2001 From: Chris Klinger Date: Thu, 25 May 2017 17:42:19 +0200 Subject: [PATCH] Added Demo on github.io --- README.md | 4 ++++ package.json | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e6360bd..81f23e2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ This is a [React](https://facebook.github.io/react/)-based implementation of Tim Urbans Life Calendar concept. Watch the [Inside the mind of a master procrastinator TED Talk](https://www.ted.com/talks/tim_urban_inside_the_mind_of_a_master_procrastinator) if you want to learn more about the concept. +## Demo + +Can be found on [here](https://c-klinger.github.io/react-life-calendar/). + ## License Copyright (c) 2017 Chris Klinger. Licensed under MIT license, see [LICENSE](LICENSE) for the full license. diff --git a/package.json b/package.json index 1989a71..456af37 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "react-life-calendar", "version": "0.1.0", "private": true, + "homepage": "https://c-klinger.github.io/react-life-calendar/", "dependencies": { "react": "^15.5.4", "react-datepicker": "^0.46.0", @@ -10,12 +11,15 @@ "react-scrollable-anchor": "^0.4.2" }, "devDependencies": { + "gh-pages": "^1.0.0", "react-scripts": "1.0.6" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=jsdom", - "eject": "react-scripts eject" + "eject": "react-scripts eject", + "predeploy": "npm run build", + "deploy": "gh-pages -d build" } }