forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move from Shoryuken to Sidekiq and add Heroku deploy button
- Loading branch information
1 parent
95ae695
commit 8d159e3
Showing
29 changed files
with
156 additions
and
258 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.2.3 | ||
2.2.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
language: ruby | ||
|
||
rvm: | ||
- 2.2 | ||
- 2.1 | ||
|
||
sudo: false | ||
|
||
bundler_args: '' | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
file_fetcher: AWS_REGION=eu-west-1 AWS_ACCESS_KEY_ID=fake AWS_SECRET_ACCESS_KEY=fake AWS_SQS_ENDPOINT="http://localhost:4568" bundle exec shoryuken -q bump-repos_to_fetch_files_for -r ./app/init_shoryuken.rb -C ./config/shoryuken.yml | ||
file_parser: AWS_REGION=eu-west-1 AWS_ACCESS_KEY_ID=fake AWS_SECRET_ACCESS_KEY=fake AWS_SQS_ENDPOINT="http://localhost:4568" bundle exec shoryuken -q bump-dependency_files_to_parse -r ./app/init_shoryuken.rb -C ./config/shoryuken.yml | ||
update_checker: AWS_REGION=eu-west-1 AWS_ACCESS_KEY_ID=fake AWS_SECRET_ACCESS_KEY=fake AWS_SQS_ENDPOINT="http://localhost:4568" bundle exec shoryuken -q bump-dependencies_to_check -r ./app/init_shoryuken.rb -C ./config/shoryuken.yml | ||
file_updater: AWS_REGION=eu-west-1 AWS_ACCESS_KEY_ID=fake AWS_SECRET_ACCESS_KEY=fake AWS_SQS_ENDPOINT="http://localhost:4568" bundle exec shoryuken -q bump-dependencies_to_update -r ./app/init_shoryuken.rb -C ./config/shoryuken.yml | ||
pull_request_creator: AWS_REGION=eu-west-1 AWS_ACCESS_KEY_ID=fake AWS_SECRET_ACCESS_KEY=fake AWS_SQS_ENDPOINT="http://localhost:4568" bundle exec shoryuken -q bump-updated_dependency_files -r ./app/init_shoryuken.rb -C ./config/shoryuken.yml | ||
worker: bundle exec sidekiq -q bump-repos_to_fetch_files_for -q bump-dependency_files_to_parse -q bump-dependencies_to_check -q bump-dependencies_to_update -q bump-updated_dependency_files -r ./app/init_sidekiq.rb -c 1 | ||
web: bundle exec rackup ./sidekiq_web.ru -p $PORT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "Bump", | ||
"description": "Gives your repo dependencies a much needed bump", | ||
"repository": "https://github.com/gocardless/bump", | ||
"buildpacks": [ | ||
{ | ||
"url": "https://github.com/heroku/heroku-buildpack-nodejs" | ||
}, | ||
{ | ||
"url": "https://github.com/heroku/heroku-buildpack-ruby" | ||
} | ||
], | ||
"env": { | ||
"AUTH_USERNAME": { | ||
"description": "Username to access the sidekiq UI", | ||
"required": true | ||
}, | ||
"AUTH_PASSWORD": { | ||
"description": "Password to access the sidekiq UI", | ||
"required": true | ||
}, | ||
"BUMP_GITHUB_TOKEN": { | ||
"description": "The Github API key to use when accessing repos and creating pull requests", | ||
"required": true | ||
} | ||
}, | ||
"addons": [ | ||
"heroku-redis", | ||
"scheduler" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
require "prius" | ||
require "shoryuken" | ||
require "sidekiq" | ||
require "raven" | ||
require "./lib/null_logger" | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.