-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Comm Installation
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.
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.