From 16c1d026f6a9531ee8f48498f6e04f0ffd7e42c7 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Jun 05 2018 10:45:48 +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. Signed-off-by: Neal Gompa --- diff --git a/files/pagure.cfg.sample b/files/pagure.cfg.sample index 2179403..0b6c198 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' ### The FAS group in which the admin of pagure are