From 0c11151f06ced34eaef03907d7a7088873fe8cfb Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Sun, 5 Aug 2018 06:37:44 +0200 Subject: [PATCH] Basic framework finished --- config.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 config.py diff --git a/config.py b/config.py new file mode 100644 index 0000000..a0c1353 --- /dev/null +++ b/config.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2018 Michael Rasmussen + +# This file is part of SecureMail. + +# SecureMail is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# SecureMail is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with SecureMail. If not, see . + +#DBTYPE = "mysql" +DBTYPE = "postgresql" +DBHOST = "localhost" +#DBPORT = 3306 +DBPORT = 5432 +DBUID = "backend" +DBPWD = "clV77B2ZJQxr" +DBNAME = "securemail" -- 2.39.2