The discord scheduled event calendar generator https://divent.crystalyx.net
Go to file
Michel Roux 5695065948
All checks were successful
divent / lint (push) Successful in 2m24s
divent / docker (push) Successful in 3m24s
divent / pypi (push) Has been skipped
Merge pull request 'chore(deps): update dependency quart to ^0.19.9' (#256) from renovate/quart-0.x into master
Reviewed-on: #256
2024-11-15 08:40:34 +00:00
.gitea/workflows fix: 📦 update deps and use slim images for divent 2024-11-06 22:43:08 +01:00
divent perf: 🚨 use ruff to speedup linting 2024-06-05 00:32:22 +02:00
.env.dist First part of the oauth authentication 2022-09-11 22:05:05 +00:00
.gitignore fix: 📦 update deps and use slim images for divent 2024-11-06 22:43:08 +01:00
Dockerfile fix: 👷 fix recommandations from docker 2024-11-11 13:47:50 +01:00
poetry.lock chore(deps): update dependency quart to ^0.19.9 2024-11-15 08:38:10 +00:00
pyproject.toml chore(deps): update dependency quart to ^0.19.9 2024-11-15 08:38:10 +00:00
README.md Remove CI on README 2023-07-21 12:54:00 +00:00
renovate.json Actualiser renovate.json 2024-11-11 12:29:23 +00:00

Divent

The discord scheduled event calendar generator

Docker Hub

Simple website that guides you to invite a bot to read and format scheduled events to a subscribable calendar.

Installing / Getting started

1) Create the bot

  • Go to the Discord Developer Portal and create a new application.
  • Enable the Build-A-Bot option in the Bot panel.
  • Click on Reset Token and keep it in a safe place, you will need it.
  • Click on Reset Secret in the OAuth2 panel, copy both Client ID and Client Secret and keep it in a safe place, you will need it.
  • Configure the rest of your app and bot as you like (name, icon, username, etc.)

2) With Docker

docker run -p 5000 \
    -e DISCORD_TOKEN=your_bot_token \
    -e OAUTH2_CLIENT_ID=your_client_id \
    -e OAUTH2_CLIENT_SECRET=your_client_secret \
    xefir/divent

2) Without Docker

  • Install Python 3
  • Install Pip
  • Run pip install divent
  • Run
DISCORD_TOKEN=your_bot_token \
OAUTH2_CLIENT_ID=your_client_id \
OAUTH2_CLIENT_SECRET=your_client_secret \
divent

3) Open your browser

The app is accessible at http://localhost:5000