⟵  Main Page

Bloometti Logo

A Discord bot made with Discord.js to implement a levels system.

Add it to you Discord server

Github repository

Repository card

Commands

Future

I am considering a complete rework of the levels system and a possible migration to TypeScript.

Nerdy details

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