]> git.datanom.net - securemail.git/blob - config.py
Basic framework finished
[securemail.git] / config.py
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2018 Michael Rasmussen <mir@datanom.net>
4
5 # This file is part of SecureMail.
6
7 # SecureMail is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # SecureMail is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with SecureMail. If not, see <https://www.gnu.org/licenses/>.
19
20 #DBTYPE = "mysql"
21 DBTYPE = "postgresql"
22 DBHOST = "localhost"
23 #DBPORT = 3306
24 DBPORT = 5432
25 DBUID = "backend"
26 DBPWD = "clV77B2ZJQxr"
27 DBNAME = "securemail"
This page took 0.061235 seconds and 6 git commands to generate.