Fixed docker stuff to work

This commit is contained in:
2022-10-03 04:39:00 +02:00
parent 676d718fc2
commit 1a8c74d9e0
6 changed files with 66 additions and 5 deletions

View File

@@ -38,7 +38,7 @@
]
},
"DatabaseSettings": {
"Host": "localhost",
"Host": "37.120.162.78",
"User": "kd_kdb",
"Password": "a2Rfa2Ri",
"Database": "kd_kdb",

View File

@@ -38,7 +38,7 @@
]
},
"DatabaseSettings": {
"Host": "localhost",
"Host": "37.120.162.78",
"User": "kd_kdb",
"Password": "a2Rfa2Ri",
"Database": "kd_kdb",

View File

@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
"""
bot Keksdose bot
~~~~~~~~~~~~~~~~~~~
Discord bot for the Keksdose discord Server
:copyright: (c) 2022 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'bot_core.helper'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2022 sh-edraft.de'
__version__ = '0.2.0'
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major='0', minor='2', micro='0')

View File

@@ -1 +1,26 @@
# -*- coding: utf-8 -*-
"""
bot Keksdose bot
~~~~~~~~~~~~~~~~~~~
Discord bot for the Keksdose discord Server
:copyright: (c) 2022 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'bot_core.logging'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2022 sh-edraft.de'
__version__ = '0.2.0'
from collections import namedtuple
# imports
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major='0', minor='2', micro='0')