summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md45
1 files changed, 38 insertions, 7 deletions
diff --git a/README.md b/README.md
index fd50c77..19455cd 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,42 @@
-# [Dashing](http://shopify.github.com/dashing)
-[![Build Status](https://secure.travis-ci.org/Shopify/dashing.png?branch=master)](http://travis-ci.org/Shopify/dashing)
+# LEAP Dashboard
+Check out http://shopify.github.com/dashing for more information.
+The maintained shopify fork of dashing can be found here: https://github.com/Dashing-io/dashing.git
-Dashing is a Sinatra based framework that lets you build beautiful dashboards. It looks especially great on TVs.
-[Check out the homepage](http://shopify.github.com/dashing).
+## Setup
-Note: Dashing is no longer being actively maintained. Read about it [here](https://github.com/Shopify/dashing/issues/711).
+Install bundler if required
-# License
-Distributed under the [MIT license](MIT-LICENSE)
+```
+gem install bundler
+```
+
+Install app dependencies using bundler:
+
+```
+bundle install --path=vendor/bundle
+```
+
+If `bundle install` fails along the way, you're probably missing Xcode command line utilities: `xcode-select --install`
+
+If you're getting `fatal error: 'openssl/ssl.h' file not found` installing `eventmachine` dependency, you can try install it using the following command (make sure you have openssl installed):
+```bash
+gem install eventmachine -v '1.0.7' -- --with-cppflags='-I/usr/local/opt/openssl/include'
+```
+
+To gather the data, the dashboard needs access to your GoCI account & a GitHub token. You can store them and make them available to the app like so:
+```bash
+cp credentials_example credentials
+source credentials
+```
+
+For this dashboard you furthermore need nodejs installed, e.g.
+```bash
+nodenv local 0.10.36
+```
+
+Use dashing to build the dashboard or start it locally.
+```
+dashing start
+```
+See `dashing --help` for usage.