aboutsummaryrefslogtreecommitdiffstats
path: root/doc/ADMIN.md
blob: 6248e6cfcd52c50e0d8e9aaacdc10062c4366442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Doing development work on the administration interface
======================================================

The Alaveteli admin interface uses Twitter's Bootstrap project to prettify it.

If you want to work on the CSS, you'll want to use
[bootstrap-sass](https://github.com/thomas-mcdonald/bootstrap-sass). Do something like:


    $ gem install bootstrap-sass
    $ gem install compass
    $ compass compile --config .compass/config.rb

To change the JavaScript, edit `public/admin/javascripts/admin.coffee`
and then run:

    $ coffee -c public/admin/javascripts/admin.coffee

That will update `public/admin/javascripts/admin.js`.