-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix heroku 1 click #1055
Open
aapomm
wants to merge
28
commits into
develop
Choose a base branch
from
fix-heroku-1-click
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Fix heroku 1 click #1055
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
bfc5c6b
Test webrick gem
aapomm 4924fbe
Try using puma
aapomm b526c08
Test puma
aapomm 76e0083
Revert "Test puma"
aapomm 1dc5166
Test hardcoded branch
aapomm aa420b6
Test webrick gem
aapomm 6c9dbd5
Revert changes
aapomm ce8b881
Remove config usage
aapomm b3b3a4e
Merge branch 'develop' into fix-heroku-1-click
aapomm 61cb6a0
Test hardcoded port
aapomm 1b4da2c
Try using postgresql addon
aapomm b5d3634
Merge branch 'fix-heroku-1-click' of github.com:dradis/dradis-ce into…
etdsoft 27a8db1
Add Heroku DB bypass
etdsoft 6167430
Bump Ruby version to 3.1.3
etdsoft e25dc5c
Temporarily add HEROKU_DEBUG_RAILS_RUNNER
etdsoft 5fce6c3
Test ruby version revert
aapomm 182c8f6
Merge branch 'develop' into fix-heroku-1-click
aapomm 022aad2
Add HEROKU_DEBUG_RAILS_RUNNER
aapomm 57ab759
Temporarily remove heroku button and add changelog entry
aapomm 8d30f6d
Remove unused heroku scripts
aapomm 22610fc
Rename app platform initializer
aapomm b911968
Merge branch 'develop' into fix-heroku-1-click
aapomm da15fa2
Set dev environment
aapomm 0755a8c
Set cable production to async and revert to prod env
aapomm 5c8596b
Remove unused procfile
aapomm ac44e91
Test remove matrix
aapomm 18a4400
Move initializer to dradis-plugins and improve cable.yml parity with pro
aapomm 35971b9
Use memory_store
aapomm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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 was deleted.
Oops, something went wrong.
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,10 +1,11 @@ | ||
development: | ||
adapter: async | ||
adapter: <%= defined?(Dradis::Pro) ? 'redis' : 'async' %> | ||
url: <%= ENV.fetch('REDIS_URL') { 'redis://localhost:6379/1' } %> | ||
|
||
test: | ||
adapter: test | ||
|
||
production: | ||
adapter: redis | ||
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> | ||
adapter: <%= defined?(Dradis::Pro) ? 'redis' : 'async' %> | ||
url: <%= ENV.fetch('REDIS_URL') { 'redis://localhost:6379/1' } %> | ||
channel_prefix: dradispro_production |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be reverted to
develop
once merged/before merging.