A Discord bot made with Discord.js to implement a levels system.
/profile [user: @mention]
/ephemeral
/setcolor [hexcode*: #FF00FF]
I am considering a complete rework of the levels system and a possible migration to TypeScript.
Deployed with Docker Compose.
Here are the containers:
services:
mongo:
container_name: mongo
image: mongo
restart: always
ports:
- "27017:27017"
volumes:
- ./data/mongo:/data/db
bot:
container_name: bot
build:
context: ./
dockerfile: Dockerfile
restart: always
mongo-express:
image: mongo-express
restart: always
ports:
- "8081:8081"
environment:
ME_CONFIG_MONGODB_URL: mongodb://mongo:27017
ME_CONFIG_BASICAUTH: false