GithubHelp home page GithubHelp logo

dtaste / bee-queue-ui Goto Github PK

View Code? Open in Web Editor NEW

This project forked from shanek/matador

0.0 1.0 0.0 8.29 MB

Front-end web interface for Bee-Queue Job Manager

License: MIT License

JavaScript 99.61% CSS 0.39%

bee-queue-ui's Introduction

Bee-Queue-UI

[Code Climate] (https://codeclimate.com/github/Hospo360/bee-queue-ui)

A web-based user interface for the Bee-Queue job manager.

Bee-Queue-UI is derived from a similar open source tool Matador targeted at Bull job manager.


Why?
To create a user interface for Bee-queue.

##Getting Started

###Installing

If you're using Bee-queue already, then all you need to do is clone this repo and run

npm install

Or you can:

npm install bee-queue-ui

  var app = require('bee-queue-ui/app')(options);
  app.listen(1337, function(){
    console.log('bee-queue-ui started listening on port', this.address().port);
  });

// http://localhost:1337/

Where options is completely optional. If not specified, it will default to the development settings in config. You can also pass in your own redis configuration thusly:

var bee-queue-ui = require('bee-queue-ui/app')({
  redis: {
    host: your host name,
    port: your port number,
    password: optional auth password
  }
});

If you are including bee-queue-ui inside of another express app, declare the basepath when you mount it to the other app.

var app = someExpressApp();
var matador = require('bee-queue-ui/app')(options);

app.use('/bee-queue-ui ', function(req, res, next){
  req.basepath = '/bee-queue-ui ';
  res.locals.basepath = '/bee-queue-ui ';
  next();
}, bee-queue-ui );

app.listen(9000);

// http://localhost:9000/bee-queue-ui 

###Running standalone from npm

You can run the app standalone with

node index.js or npm start

This standalone method will require you to modify the config/development.json and config/production.json files so that it has the right values for your host and port for your redis server (also any additional redis options, such as passwords).

Or you can simply

npm install bee-queue-ui

What is it built on?
Bee-queue requires Node (obviously) and is built on Experess. Other NPM packages utilized include, but are probably not limited to:

On top of that, Bee-queue also utilizes several open-source javascript/css libraries and tools, including but not limited to:


License


The MIT License (MIT)

Copyright (c) 2014 Shane King

Copyright (c) 2016 Kelly Krook

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

bee-queue-ui's People

Contributors

den-t avatar irony avatar kellykmk89 avatar lchenay avatar shanek avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.