From 912c4d05683ca90149a63d58240e6f290381a55f Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Jun 05 2018 11:00:38 +0000 Subject: Fix commented out DB_URL strings for MySQL and PostgreSQL in sample config The formatting of the 'DB_URL' strings for MySQL and PostgreSQL were slightly wrong, leading to confusion when switching from SQLite to either database in the configuration. Merges https://pagure.io/pagure/pull-request/3276 Signed-off-by: Neal Gompa Signed-off-by: Pierre-Yves Chibon --- diff --git a/files/pagure.cfg.sample b/files/pagure.cfg.sample index d57b827..2c15a37 100644 --- a/files/pagure.cfg.sample +++ b/files/pagure.cfg.sample @@ -16,8 +16,8 @@ ENABLE_DOCS = True SECRET_KEY='' ### url to the database server: -#DB_URL=mysql://user:pass@host/db_name -#DB_URL=postgres://user:pass@host/db_name +#DB_URL = 'mysql://user:pass@host/db_name' +#DB_URL = 'postgres://user:pass@host/db_name' DB_URL = 'sqlite:////var/tmp/pagure_dev.sqlite' ### Send FedMsg notifications of events in pagure