Dashing - dashboard framework: Difference between revisions

From RARForge
Jump to navigation Jump to search
(Created page with "<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 ...")
 
No edit summary
Line 1: Line 1:
== Dashing  ==
http://shopify.github.io/dashing/
=== Install Ruby 1.9.1 on Debian Squeeze ===
<source>
<source>
sudo apt-get install ruby1.9.1-full
sudo apt-get install ruby1.9.1-full
Line 12: Line 16:
ln -sf testrb1.9.1 testrb
ln -sf testrb1.9.1 testrb
</source>
</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!
[[Category:How-to]]
[[Category:Linux]]
[[Category:Networking]]
[[Category:Scripts]]

Revision as of 04:08, 31 May 2013

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>

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!