|
|
||
|---|---|---|
| channel_rewards | ||
| commands | ||
| credential_templates | ||
| tests | ||
| .gitignore | ||
| badwords.py | ||
| chyron_module.py | ||
| config.py | ||
| cooldowns.py | ||
| credentials.py | ||
| db.py | ||
| docker-compose.yaml | ||
| Dockerfile_standalone_channelRewards.Dockerfile | ||
| Dockerfile_standalone_command.Dockerfile | ||
| Dockerfile_standalone_DiscordScript.Dockerfile | ||
| Dockerfile_standalone_lights.Dockerfile | ||
| Dockerfile_standalone_tts_core.Dockerfile | ||
| Dockerfile_standalone_Twitch_Pubsub.Dockerfile | ||
| Dockerfile_standalone_TwitchScript.Dockerfile | ||
| Dockerfile_standalone_websource.Dockerfile | ||
| Dockerfile-OLD | ||
| help_module.py | ||
| hotkey_script.py | ||
| lights_module.py | ||
| main.py | ||
| makedockerimages.bat | ||
| obsWebSocket.py | ||
| praxis bot.code-workspace | ||
| praxis_logging.py | ||
| praxis-main-start.bat | ||
| praxis-main-stop.bat | ||
| praxis-tts-speaker.bat | ||
| praxis-user.bat | ||
| README.md | ||
| rebuild_docker_and_run.bat | ||
| requirements_sa_command.txt | ||
| requirements_sa_discord.txt | ||
| requirements_sa_twitch_pubsub.txt | ||
| requirements_sa_twitch.txt | ||
| requirements.txt | ||
| standalone_channelrewards.py | ||
| standalone_command.py | ||
| standalone_discord_script.py | ||
| standalone_lights.py | ||
| standalone_obsWebSocket.py | ||
| standalone_tts_core.py | ||
| standalone_tts_speaker.py | ||
| standalone_twitch_pubsub.py | ||
| standalone_twitch_script.py | ||
| standalone_webSource.py | ||
| tempText_Module.py | ||
| test_module.py | ||
| timers_module.py | ||
| tts.py | ||
| twitch_generate_credentials.py | ||
| user_module.py | ||
| utilities_script.py | ||
An evolving chatbot to help users primarily with live stream production and effects.
Standalone V2 Info
Docker:
Image Setup:
Use these commands to build the images.
docker build --file Dockerfile_standalone_command --tag standalone_command .
docker build --file Dockerfile_standalone_channelRewards --tag standalone_channelrewards .
docker build --file Dockerfile_standalone_lights --tag standalone_lights .
docker build --file Dockerfile_standalone_DiscordScript --tag standalone_discordscript .
docker build --file Dockerfile_standalone_TwitchScript --tag standalone_twitchscript .
docker build --file Dockerfile_standalone_Twitch_Pubsub --tag standalone_twitch_pubsub .
Docker-Compose Info:
To Start:
docker-compose up -d
To Stop:
docker-compose down
Credentials:
Credentials Setup:
Create a json based on the templates and put them into the /credentials/ folder.
Refer to the /credential_templates/ folder for examples.
For Twitch Credentials
Username = TwitchUsername (Must match credentialsNickname in config)
Helix Client ID = https://dev.twitch.tv/console/apps
Oauth = https://twitchapps.com/tmi/
V5 Client ID = https://twitchtokengenerator.com/
For Database Credentials
Nickname = Anything You Want (Must match credentialsNickname in config)
Engine = "mysql+mysqlconnector://root:password@localhost:3306/DatabaseName"
For Discord Credentials
Nickname = Anything You Want (Must match credentialsNickname in config)
Token = https://discord.com/developers/
Credential Usage:
Place json credentials in the /credentials/ folder.
To load them, run load_credentials() from Credentials_Module in the credentials.py script.