Avrae is a Discord bot designed to help you and your friends play D&D online.
You can join the Avrae Development Discord here, and invite Avrae to your own Discord server here!
With a custom dice parser, Avrae is one of the most advanced dice rollers on Discord, capable of supporting pretty much every type of roll needed to play D&D. Advantage, disadvantage, and crits are built in, you can keep, drop, or reroll dice as needed, dice can explode, and dice can be bounded.
Want to use the dice roller in your own code? Check out the code!
Avrae can read character sheets from D&D Beyond, Dicecloud, or a Google Sheet, automatically generating macros to roll attacks, ability checks, and saving throws. A player can then simply use a command to make a check, save, attack, or cast, and all necessary rolls will be resolved automatically.
The initiative tracker is a fast way to track combat in a text channel. It supports automatic combatant sorting, HP, AC, resistance, and status effect tracking, and integration with the character sheet manager and 5e content to further streamline combat.
Have a feature in mind that isn't already in Avrae? Avrae provides a fully-featured modding API to write your own commands, and a place to share them with the community!
Check out the docs and the Alias Workshop!
Check out docker/readme.md.
Avrae is built on Ubuntu, but should be fully compatible with any UNIX-based system. It is possible to run Avrae on Windows, but is not recommended.
You'll need to create a Google Drive Service Account. You can find instructions on how to do this here.
Follow steps 1-3 in the Signed Credentials portion. Rename the JSON avrae-google.json
and put it in the project root.
You will need to run a Redis instance to serve as a high-performance cache. Download Redis and run a redis server locally before launching Avrae.
You will also need to run a MongoDB instance to serve as Avrae's database.
Avrae requires Python >= 3.8.0.
Install the dependencies with pip install -r requirements.txt
.
These are the required/recommended environment variables for local dev.
ENVIRONMENT
- "development" for developmentDISCORD_BOT_TOKEN
- a valid Discord bot tokenDISCORD_OWNER_USER_ID
- your Discord user IDMONGO_URL
- a MongoDB connection string (defaults tomongodb://localhost:27017
)REDIS_URL
- a Redis connection string (defaults toredis://redis:6379/0
)NO_DICECLOUD
- if set, disables dicecloud connection/importing, otherwise:DICECLOUD_USER
- a dicecloud usernameDICECLOUD_PASS
- the password for the dicecloud userDICECLOUD_TOKEN
- a dicecloud API token
- If running Avrae in unsharded mode (recommended for testing), run
python dbot.py test
. - If running Avrae in sharded mode, run
python dbot.py
.
To test Avrae, run these commands:
docker-compose -f docker-compose.ci.yml -p avrae up -d --build
docker logs -f avrae_tests_1
This should initialize an ephemeral database to run command unit tests in.
You should set the DICECLOUD_USER
, DICECLOUD_PASS
, DICECLOUD_TOKEN
, and GOOGLE_SERVICE_ACCOUNT
env vars to their correct values.
Once tests complete, it is recommended to clean up the containers with docker-compose down
.
Env vars required to deploy to production - not required for local dev:
NUM_CLUSTERS
- equal to the number of ECS tasks running AvraeDDB_AUTH_SECRET
- JWT signing secret for DDB auth requestDDB_AUTH_WATERDEEP_SECRET
- JWT signing secret for DDB auth responseDDB_AUTH_AUDIENCE
- JWT audience (default"avrae.io"
)DDB_AUTH_ISSUER
- JWT issuer (default"dndbeyond.com"
)DDB_AUTH_EXPIRY_SECONDS
- JWT expiry (default 5m)DDB_AUTH_SERVICE_URL
- DDB Auth Service base URLDYNAMO_REGION
- AWS region for Entitlements DBDYNAMO_USER_TABLE
- Table name for Entitlements user tableDYNAMO_ENTITY_TABLE
- Table name for Entitlements entity tableAWS_ACCESS_KEY_ID
- AWS Access Key to access DynamoAWS_SECRET_ACCESS_KEY
- AWS Secret Access KeyLAUNCHDARKLY_SDK_KEY
- LaunchDarkly SDK KeyCHARACTER_COMPUTATION_ENDPOINT
- HTTP endpoint for DDB character computation call
Other env vars:
NUM_SHARDS
- explicitly set the number of shards to runGIT_COMMIT_SHA
- should be set in Travis (required for prod)