Skip to content

Instantly share code, notes, and snippets.

@justinvdm
Created January 8, 2013 08:11
Show Gist options
  • Save justinvdm/4482118 to your computer and use it in GitHub Desktop.
Save justinvdm/4482118 to your computer and use it in GitHub Desktop.
.
├── diamondash
│   ├── public
│   │   ├── css
│   │   │   ├── dashboard.css
│   │   │   ├── index.css
│   │   │   └── style.css
│   │   ├── js
│   │   │   ├── main.js
│   │   │   ├── widget-model.js
│   │   │   └── widget-view.js
│   │   ├── lib
│   │   └── favicon.png
│   ├── templates
│   │   ├── dashboard_container.xml
│   │   ├── dashboard_page.xml
│   │   ├── index.xml
│   │   ├── widget.xml
│   │   └── widget_row.xml
│   ├── tests
│   │   ├── public
│   │   │   └── js
│   │   │   └── widget-model.test.js
│   │   ├── widgets
│   │   │   ├── graph
│   │   │   │   ├── public
│   │   │   │   │   └── js
│   │   │   │   │   └── graph-model.test.js
│   │   │   │   └── test_graph.py
│   │   │   └── lvalue
│   │   │   ├── public
│   │   │   │   └── js
│   │   │   │   └── lvalue-model.test.js
│   │   │   └── test_lvalue.py
│   │   ├── test_dashboard.py
│   │   ├── test_server.py
│   │   └── test_widget.py
│   ├── widgets
│   │   ├── graph
│   │   │   ├── public
│   │   │   │   ├── css
│   │   │   │   │   └── graph.css
│   │   │   │   ├── js
│   │   │   │   │   ├── graph-model.js
│   │   │   │   │   ├── graph-view.js
│   │   │   │   │   └── main.js
│   │   │   │   ├── lib
│   │   │   │   │   └── d3.js
│   │   │   │   └── favicon.png
│   │   │   ├── graph.py
│   │   │   └── graph_widget.xml
│   │   └── lvalue
│   │   ├── public
│   │   │   ├── css
│   │   │   │   └── lvalue.css
│   │   │   ├── js
│   │   │   │   ├── lvalue-model.js
│   │   │   │   ├── lvalue-view.js
│   │   │   │   └── main.js
│   │   │   ├── lib
│   │   │   └── favicon.png
│   │   ├── lvalue.py
│   │   ├── lvalue_group.xml
│   │   └── lvalue_widget.xml
│   ├── dashboard.py
│   ├── exceptions.py
│   ├── server.py
│   ├── service.py
│   └── widget.py
├── etc
│   ├── dashboards
│   │   ├── dashboard.example.yml
│   │   └── dashboard.example2.yml
│   ├── diamondash.yml
│   └── supervisord.example.conf
├── twisted
│   └── plugins
│   └── diamondash_plugin.py
└── setup.py
31 directories, 47 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment