forked from jgoodsen/jkanban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
38 lines (21 loc) · 1.01 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Current Release: just about ready to integrate into radtrack ...
jKanban is a jQuery plugin that will drop a Kanban board anywhere in a web page.
All you need to do is supply a RESTful JSON web service to supply card data.
To See The Kanban Board in action, with dummy JSON data, simply open up the file
examples/simple-kanban/simple-kanban.html
in a browser.
-- This is all well tested javascript code. See for yourself. --
To run the specs:
1. In a console window: "rake jasmine"
2. Open http://localhost:8888/ in a browser to run the tests
To package up and distribute just the jKanban javascript as a package to use in other applications, use:
rake dist
and then you'll have a dist/jkanban.tgz in the dist/ directory that you can distribute.
ActiveRecord::Base.include_root_in_json = false
=======
-- Rails --
To start up the back end Rails JSON server you will need to execute these commands:
>>>>>>> 697d14e2894d877f9d599b2e8be462be7258a70e
gem install bundler
bundle install
rake db:create:all