]> git.sesse.net Git - remoteglot/blobdiff - config.pm
Switch from flat files to PostgreSQL.
[remoteglot] / config.pm
index 2bb1974fa578a1bd46d10fc7f93c5e34ecf6d7bd..3a57206699b88baefe47dcbd8d30ec672af10b15 100644 (file)
--- a/config.pm
+++ b/config.pm
@@ -66,6 +66,11 @@ our @masters = (
 # you probably need specific prior permission to use this.
 our $tb_serial_key = undef;
 
+# Postgres configuration.
+our $dbistr = "dbi:Pg:dbname=remoteglot";
+our $dbiuser = undef;
+our $dbipass = undef;
+
 eval {
        my $config_filename = $ENV{'REMOTEGLOT_CONFIG'} // 'config.local.pm';
        require $config_filename;