forked from ManageIQ/manageiq-schema
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore changes needed to run the schema plugin in the dummy app
- Remove the Ruby 2.7.4 restriction - Load the manageiq-schema Gemfile instead of the dummy app Gemfile - Delete the generated database.yml in favor of database.tmpl.yml - Ignore the db/schema.rb that is generated - Restore the v2_key
- Loading branch information
Showing
7 changed files
with
33 additions
and
134 deletions.
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 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
:EZCRYPTO KEY FILE: KEEP THIS SECURE ! | ||
:created: 2014-02-28 09:59:47 -0500 | ||
:algorithm: aes-256-cbc | ||
:key: uXfIgSAUq5Oz8goc/zI8HOOo0SI++Sd9mfpgBanYIM4= |
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,3 +1,3 @@ | ||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) | ||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__) | ||
|
||
require 'bundler/setup' # Set up gems listed in the Gemfile. |
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,23 @@ | ||
--- | ||
base: &base | ||
adapter: postgresql | ||
encoding: utf8 | ||
username: root | ||
password: smartvm | ||
pool: 5 | ||
wait_timeout: 5 | ||
min_messages: warning | ||
|
||
development: | ||
<<: *base | ||
database: dummy_development | ||
min_messages: notice | ||
|
||
production: | ||
<<: *base | ||
database: dummy_production | ||
|
||
test: &test | ||
<<: *base | ||
pool: 3 | ||
database: dummy_test |
This file was deleted.
Oops, something went wrong.