Skip to content

Comm Installation

Mike Perham edited this page May 29, 2023 · 1 revision

Sidekiq Pro

When you purchase Sidekiq Pro, you will get an email with your access credentials, which look like username:password. You will add the following to your Gemfile:

source "https://gems.contribsys.com" do
  gem "sidekiq-pro"
end

and then configure Bundler with your credentials:

bundle config --local gems.contribsys.com username:password
git add .bundle/config

See the bundle config man page for more options. If you don't want to store your credentials in git, you can use a BUNDLE_GEMS__CONTRIBSYS__COM environment variable instead, as noted in that man page.

Sidekiq Enterprise

When you purchase Sidekiq Enterprise, you will get an email with your access credentials, which look like username:password. You will add the following to your Gemfile:

source "https://enterprise.contribsys.com" do
  gem "sidekiq-pro"
  gem "sidekiq-ent"
end

and then configure Bundler with your credentials:

bundle config --local enterprise.contribsys.com username:password
git add .bundle/config

See the bundle config man page for more options. If you don't want to store your credentials in git, you can use a BUNDLE_ENTERPRISE__CONTRIBSYS__COM environment variable instead, as noted in that man page.