gitextract_wlr7h9ez/ ├── .gitignore ├── .npmignore ├── .travis.yml ├── History.md ├── LICENSE ├── Makefile ├── Readme.md ├── bin/ │ └── kue-dashboard ├── examples/ │ ├── delayed.js │ ├── events.js │ ├── many.js │ ├── shutdown.js │ ├── stale.js │ └── video.js ├── index.js ├── lib/ │ ├── http/ │ │ ├── index.js │ │ ├── middleware/ │ │ │ └── provides.js │ │ ├── public/ │ │ │ ├── javascripts/ │ │ │ │ ├── caustic.js │ │ │ │ ├── job.js │ │ │ │ ├── jquery.ext.js │ │ │ │ ├── loading.js │ │ │ │ ├── main.js │ │ │ │ ├── progress.js │ │ │ │ ├── search.js │ │ │ │ └── utils.js │ │ │ └── stylesheets/ │ │ │ ├── actions.styl │ │ │ ├── config.styl │ │ │ ├── context-menu.styl │ │ │ ├── error.styl │ │ │ ├── job.styl │ │ │ ├── main.css │ │ │ ├── main.styl │ │ │ ├── menu.styl │ │ │ ├── mixins.styl │ │ │ └── scrollbar.styl │ │ ├── routes/ │ │ │ ├── index.js │ │ │ └── json.js │ │ └── views/ │ │ ├── _filter.pug │ │ ├── _job.pug │ │ ├── _menu.pug │ │ ├── _row.pug │ │ ├── _search.pug │ │ ├── _sort.pug │ │ ├── job/ │ │ │ └── list.pug │ │ └── layout.pug │ ├── kue.js │ ├── queue/ │ │ ├── events.js │ │ ├── job.js │ │ ├── test_mode.js │ │ └── worker.js │ └── redis.js ├── package.json └── test/ ├── jsonapi.js ├── mocha.opts ├── prefix.coffee ├── shutdown.coffee ├── tdd/ │ ├── kue.spec.js │ └── redis.spec.js ├── test.coffee ├── test.js └── test_mode.js