environment/lib/setup/postgresql.rb

24 lines
328 B
Ruby
Raw Normal View History

2025-08-06 16:50:03 +02:00
module Setup
require_relative '../templates'
module PostgreSQL
extend Templates
# attr_accessor :te
def self.make_config
pg_hba = render("pg_hba.conf")
test = render("test", te: "This is a test string")
puts test
end
def self.install
make_config
end
end
end