mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-18 14:04:15 +02:00
19 lines
607 B
Plaintext
19 lines
607 B
Plaintext
# Tokens
|
|
DISCORD_TOKEN= # Bot token from: https://discord.com/developers/
|
|
|
|
# Configuration
|
|
DEFAULT_PREFIX= # Prefix used to run commands in Discord
|
|
DEVELOPMENT= # (true/false) Enables developer mode
|
|
|
|
# Docker
|
|
POSTGRES_USER=USERNAME
|
|
POSTGRES_PASSWORD=PASSWORD
|
|
POSTGRES_DB=DB
|
|
|
|
# Redis
|
|
REDIS_URL= # URL to redis database (if running everything within docker compose, use "redis")
|
|
BULLMQ_URL # URL for redis database, but without redis:// and credentials
|
|
|
|
# Database URL (designed for Postgres, but designed on Prisma)
|
|
DATABASE_URL= # "postgresql://USERNAME:PASSWORD@postgres:5432/DB?schema=ara&sslmode=prefer"
|