3.3 KiB
3.3 KiB
QuizBot
Open source Discord bot for quizzes and quest-like events.
Installation
Dependencies
- Python 3.11+
- MongoDB
- Redis/Valkey or Memcached (used for caching, optional)
- Git (only if installing from source)
Installation from release
- Download the release archive from Releases
- Unpack the archive to a directory of your choice
- Go to the project's directory
- Create a virtual environment:
python3 -m venv .venv
- Activate the virtual environment:
- Linux:
source .venv/bin/activate
- Windows (cmd):
.venv/bin/activate.bat
- Windows (PowerShell):
.venv/bin/activate.ps1
- Linux:
- Install requirements:
pip install -r requirements.txt
- Copy example config to a real file:
cp config_example.json config.json
- Configure the bot (see Configuration)
- Start the bot:
python main.py
- The bot can be stopped by a keyboard interrupt (
Ctrl+C
) and a virtual environment can be deactivated usingdeactivate
Installation from source
- Clone the repository:
git clone https://git.end-play.xyz/profitroll/QuizBot.git
- Go to the project's directory:
cd QuizBot
- Continue from step 4 of Installation from release
Configuration
TODO
Upgrading
Upgrading from release
Installing over the older version is not supported. Fresh installation is necessary to prevent data corruption.
- Make a backup of the project's directory. Some of the old files will be reused
- Follow the Installation from release from the beginning and stop before 7th step
- Copy file
config.json
and directorydata
from the backup you made into the new installation's directory - While still in the virtual environment, migrate the database:
python main.py --migrate
After these steps are performed, the bot is ready to be started and used.
Upgrading from source
- Make a backup of the project's directory
- Go to the project's directory
- Update the project:
git pull
- Activate the virtual environment:
- Linux:
source .venv/bin/activate
- Windows (cmd):
.venv/bin/activate.bat
- Windows (PowerShell):
.venv/bin/activate.ps1
- Linux:
- Migrate the database:
python main.py --migrate
After these steps are performed, the bot is ready to be started and used.
Usage
- Invite the bot to your server with permissions
137707834448
andapplications.commands
scope.
You can also use the following URL template to invite your bot after replacingCLIENT_ID
with you bot's client ID:
https://discord.com/oauth2/authorize?client_id=CLIENT_ID&permissions=137707834448&integration_type=0&scope=applications.commands+bot
- Go to "Server Settings > Integrations > QuizBot" and disable access to admin commands for you default role.
Only admins should have access to following commands:/config
,/event
,/stage
and/user
.
Allowing access to/status
is not recommended, however won't do any harm if done so. - Configure bot for usage on your server using
/config set
providing all the necessary arguments.
Timezones are compatible with daylight saving time (e.g.CET
will be interpreted asCEST
during daylight saving).