Dashing - dashboard framework

From RARForge
Jump to navigation Jump to search

Dashing

http://shopify.github.io/dashing/


Install Ruby 1.9.1 on Debian Squeeze

<source> sudo apt-get install ruby1.9.1-full </source> <source> cd /usr/bin ln -sf ruby1.9.1 ruby ln -sf gem1.9.1 gem ln -sf erb1.9.1 erb ln -sf irb1.9.1 irb ln -sf rake1.9.1 rake ln -sf rdoc1.9.1 rdoc ln -sf testrb1.9.1 testrb </source>


Other steps

<source> ln -s /var/lib/gems/1.9.1/bin/dashing /usr/bin/ </source> <source> gem install bundler ln -s /var/lib/gems/1.9.1/bin/dashing /usr/bin/ </source>


Install NodeJS

<source> sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev </source>

<source> git clone https://github.com/joyent/node.git cd node

  1. 'git tag' shows all available versions: select the latest stable.

git checkout v0.9.5 </source>

  • This is a stop normally not documented, but required for the arm7 (dreamplug)
modify file: node-vx.x/deps/v8/SConstruct
You need to add -march=armv7-a

<source>

  1. You need to edit this file and modify
  2. line # 84 it should look like this:

'gcc': {

   'all': {
     'CCFLAGS':      ['$DIALECTFLAGS', '$WARNINGFLAGS', '-march=armv7-a'],
     'CXXFLAGS':     ['-fno-rtti', '-fno-exceptions'],
   },

</source>

  • Finish the compiling and install

<source>

  1. Configure seems not to find libssl by default so we give it an explicit pointer.

./configure --openssl-libpath=/usr/lib/ssl make

  1. prepare to wait FOREVER...

make test sudo make install node -v </source>

Install

  • Install the gem from the command line. Make sure you have Ruby 1.9

<source> gem install dashing </source>

  • Generate a new project

<source> dashing new sweet_dashboard_project </source>

  • Change your directory to sweet_dashboard_project and bundle gems

<source> bundle </source>

  • Start the server!

<source> dashing start </source>

  • Point your browser at localhost:3030 and have fun!