summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVarac <varac@leap.se>2017-09-11 12:41:09 +0200
committerVarac <varac@leap.se>2017-09-11 12:41:09 +0200
commit146091da2694ea156dd35520583f5aa351532a8f (patch)
tree53ccaa9f89158b5215cf83299e7b8e903c3da9ef
parentc037b76647f1e87967585fc7be3982049fc2f8c7 (diff)
Code blocks show up nices in editor
-rw-r--r--README.md31
1 files changed, 12 insertions, 19 deletions
diff --git a/README.md b/README.md
index 7f47fbe..139add6 100644
--- a/README.md
+++ b/README.md
@@ -7,36 +7,29 @@ The maintained shopify fork of dashing can be found here: https://github.com/Das
Install bundler if required
-```
-gem install bundler
-```
+ gem install bundler
Install app dependencies using bundler:
-```
-bundle install --path=vendor/bundle --deployment
-```
+ bundle install --path=vendor/bundle --deployment
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'
-```
+
+ 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
-```
+
+ cp credentials_example credentials
+ source credentials
For this dashboard you furthermore need nodejs installed, e.g.
-```bash
-nodenv local 0.10.36
-```
+
+ nodenv local 0.10.36
Use dashing to build the dashboard or start it locally.
-```
-dashing start
-```
+
+ dashing start
+
See `dashing --help` for usage.