Sha256: 1705a351359a403f6c813afc126b635eacd77306308c3c52f8cba3d97be071c3

Contents?: true

Size: 856 Bytes

Versions: 1

Compression:

Stored size: 856 Bytes

Contents

# que-web [![Build Status](https://travis-ci.org/statianzo/que-web.svg?branch=master)](https://travis-ci.org/statianzo/que-web)

que-web is a web UI to the [Que](https://github.com/chanks/que) job queue.

![Que Web](https://raw.githubusercontent.com/statianzo/que-web/master/doc/queweb.png)

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'que-web'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install que-web

## Usage

In your `config.ru` add

```ruby
require "que/web"

map "/que" do
  run Que::Web
end
```

Or in Rails `config/routes.rb`

```ruby
require "que/web"
mount Que::Web => "/que"
```

If you want to use Docker, run:
```
docker run -e DATABASE_URL=postgres://username:password@hostname/db_name -p 3002:8080 joevandyk/que-web
```
Or use docker/Dockerfile to build your own container.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
que-web-0.4.0 README.md