mirror of
https://github.com/chenasraf/venom.git
synced 2026-05-17 17:28:08 +00:00
20 lines
418 B
Bash
20 lines
418 B
Bash
#!/usr/bin/env bash
|
|
|
|
# triggers for commands, separate with "|"
|
|
export COMMAND_TRIGGERS="!"
|
|
|
|
# triggers for chat messages, separate with "|"
|
|
export CHAT_TRIGGERS="v |venom |v, |venom, |v! |venom! "
|
|
|
|
# discord credentials
|
|
export DISCORD_APP_ID=
|
|
export DISCORD_PUBLIC_KEY=
|
|
export DISCORD_TOKEN=
|
|
|
|
# mongodb
|
|
export MONGODB_URI=mongodb://localhost:27017
|
|
export MONGODB_VOLUME_PATH=data/db
|
|
|
|
# logging
|
|
export LOG_LEVEL=debug
|