]> git.datanom.net - securemail.git/commitdiff
Basic framework finished
authorMichael Rasmussen <mir@datanom.net>
Sun, 5 Aug 2018 04:37:44 +0000 (06:37 +0200)
committerMichael Rasmussen <mir@datanom.net>
Sun, 5 Aug 2018 04:37:44 +0000 (06:37 +0200)
config.py [new file with mode: 0644]

diff --git a/config.py b/config.py
new file mode 100644 (file)
index 0000000..a0c1353
--- /dev/null
+++ b/config.py
@@ -0,0 +1,27 @@
+# -*- coding: utf-8 -*-
+# Copyright (c) 2018  Michael Rasmussen <mir@datanom.net>
+# 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 <https://www.gnu.org/licenses/>.
+
+#DBTYPE = "mysql"
+DBTYPE = "postgresql"
+DBHOST = "localhost"
+#DBPORT = 3306
+DBPORT = 5432
+DBUID = "backend"
+DBPWD = "clV77B2ZJQxr"
+DBNAME = "securemail"
This page took 0.032468 seconds and 5 git commands to generate.