Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

que-web

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

que-web

  • 0.10.0
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

que-web Build Status

que-web is a web UI to the Que job queue.

Que Web

Installation

Add this line to your application's Gemfile:

gem 'que-web'

And then execute:

$ bundle

Or install it yourself as:

$ gem install que-web

Usage

With config.ru

Add in config.ru:

require "que/web"

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

Rails

In config/routes.rb:

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

Authentication

Devise
# config/routes.rb
authenticate :user do
  mount Que::Web, at: 'que'
end
Basic HTTP auth

In config/initializers/queweb.rb:

Que::Web.use(Rack::Auth::Basic) do |user, password|
  [user, password] == [ENV["QUEWEB_USERNAME"], ENV["QUEWEB_PASSWORD"]]
end

Then add the two environment variables to your production environment.

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.

FAQs

Package last updated on 22 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc