Merge branch 'chore/fix_ci' into feature/admin_stats
This commit is contained in:
commit
164400adec
@ -1,12 +1,6 @@
|
|||||||
# SQLite. Versions 3.8.0 and up are supported.
|
|
||||||
# gem install sqlite3
|
|
||||||
#
|
|
||||||
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
||||||
# gem 'sqlite3'
|
|
||||||
#
|
|
||||||
default: &default
|
default: &default
|
||||||
adapter: sqlite3
|
adapter: sqlite3
|
||||||
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
pool: <%= ENV["DB_POOL"] || ENV['MAX_THREADS'] || 5 %>
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
|
|
||||||
development:
|
development:
|
||||||
@ -17,11 +11,11 @@ development:
|
|||||||
<<: *default
|
<<: *default
|
||||||
adapter: postgresql
|
adapter: postgresql
|
||||||
database_tasks: false
|
database_tasks: false
|
||||||
host: <%= ENV.fetch("LNDHUB_PG_HOST") { 'localhost' } %>
|
host: <%= ENV["LNDHUB_PG_HOST"] || 'localhost' %>
|
||||||
port: <%= ENV.fetch("LNDHUB_PG_PORT") { 5432 } %>
|
port: <%= ENV["LNDHUB_PG_PORT"] || 5432 %>
|
||||||
database: <%= ENV.fetch("LNDHUB_PG_DATABASE") { 'lndhub' } %>
|
database: <%= ENV["LNDHUB_PG_DATABASE"] || 'lndhub' %>
|
||||||
username: <%= ENV.fetch("LNDHUB_PG_USERNAME") { 'lndhub' } %>
|
username: <%= ENV["LNDHUB_PG_USERNAME"] || 'lndhub' %>
|
||||||
password: <%= ENV.fetch("LNDHUB_PG_PASSWORD") %>
|
password: <%= ENV["LNDHUB_PG_PASSWORD"] %>
|
||||||
|
|
||||||
# Warning: The database defined as "test" will be erased and
|
# Warning: The database defined as "test" will be erased and
|
||||||
# re-generated from your development database when you run "rake".
|
# re-generated from your development database when you run "rake".
|
||||||
@ -48,8 +42,8 @@ production:
|
|||||||
<<: *default
|
<<: *default
|
||||||
adapter: postgresql
|
adapter: postgresql
|
||||||
database_tasks: false
|
database_tasks: false
|
||||||
host: <%= ENV.fetch("LNDHUB_PG_HOST") { 'localhost' } %>
|
host: <%= ENV["LNDHUB_PG_HOST"] || 'localhost' %>
|
||||||
port: <%= ENV.fetch("LNDHUB_PG_PORT") { 5432 } %>
|
port: <%= ENV["LNDHUB_PG_PORT"] || 5432 %>
|
||||||
database: <%= ENV.fetch("LNDHUB_PG_DATABASE") { 'lndhub' } %>
|
database: <%= ENV["LNDHUB_PG_DATABASE"] || 'lndhub' %>
|
||||||
username: <%= ENV.fetch("LNDHUB_PG_USERNAME") { 'lndhub' } %>
|
username: <%= ENV["LNDHUB_PG_USERNAME"] || 'lndhub' %>
|
||||||
password: <%= ENV.fetch("LNDHUB_PG_PASSWORD") { '' } %>
|
password: <%= ENV["LNDHUB_PG_PASSWORD"] %>
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
require "rails_helper"
|
|
||||||
|
|
||||||
RSpec.describe QuickstatsContainerComponent, type: :component do
|
|
||||||
pending "add some examples to (or delete) #{__FILE__}"
|
|
||||||
|
|
||||||
# it "renders something useful" do
|
|
||||||
# expect(
|
|
||||||
# render_inline(described_class.new(attr: "value")) { "Hello, components!" }.css("p").to_html
|
|
||||||
# ).to include(
|
|
||||||
# "Hello, components!"
|
|
||||||
# )
|
|
||||||
# end
|
|
||||||
end
|
|
@ -1,15 +0,0 @@
|
|||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
require "rails_helper"
|
|
||||||
|
|
||||||
RSpec.describe QuickstatsItemComponent, type: :component do
|
|
||||||
pending "add some examples to (or delete) #{__FILE__}"
|
|
||||||
|
|
||||||
# it "renders something useful" do
|
|
||||||
# expect(
|
|
||||||
# render_inline(described_class.new(attr: "value")) { "Hello, components!" }.css("p").to_html
|
|
||||||
# ).to include(
|
|
||||||
# "Hello, components!"
|
|
||||||
# )
|
|
||||||
# end
|
|
||||||
end
|
|
Loading…
x
Reference in New Issue
Block a user