Readme Update

This commit is contained in:
Alex Orid 2021-04-15 18:43:17 -04:00
parent b7e20c5602
commit 897f1c367f
2 changed files with 4 additions and 6 deletions

View File

@ -6,13 +6,10 @@ ___
## Docker Info:
Uncomment the following line in the **Dockerfile** to have **main.py** start with the Docker Container
Currently to build the container you need to run the following command otherwise you get the error ***"TERM environment variable not set."***
`#CMD [ "python3", "main.py"]`
`docker create -t -e ISDOCKER=cat --name praxis praxis`
To start the bot with **User_Module** activated use this.
`docker exec -ti praxis python3 main.py`
# Credentials:

View File

@ -36,8 +36,9 @@ def twitch_module_init(dbCert, twitchCert):
twitchModule_.tts_enabled = config.autoEnabled_TwitchChannelsTTS
twitchModule_.whitelisted_users = config.whitelisted_TwitchPowerUsers
print("[TWITCH Module]>", "Loading Channels...")
for twitchChannel in config.autoJoin_TwitchChannels:
print("joining channel function")
print("joining twitch channel:", twitchChannel)
twitchModule_.join_channel(None, twitchChannel)
def discord_module_init(dbCert, discordCert):