The discord scheduled event calendar generator https://divent.crystalyx.net
Go to file
Michel Roux bedc1ed2e4
divent / lint (push) Successful in 2m6s Details
divent / docker (push) Successful in 39s Details
divent / pypi (push) Successful in 1m32s Details
fix: missing __init__ to please mypy
2024-01-24 12:31:22 +01:00
.gitea/workflows Update actions 2023-09-29 00:36:10 +02:00
divent fix: missing __init__ to please mypy 2024-01-24 12:31:22 +01:00
.env.dist First part of the oauth authentication 2022-09-11 22:05:05 +00:00
.gitignore init project 2022-09-08 14:21:01 +00:00
Dockerfile Update python version and fix aiohttp 2023-11-06 22:06:01 +01:00
README.md Remove CI on README 2023-07-21 12:54:00 +00:00
poetry.lock chore: update deps 2024-01-24 10:10:39 +00:00
pyproject.toml feat: rework __main__ (close #170) 2024-01-24 12:25:33 +01:00
renovate.json Update lock 2023-06-25 17:53:06 +02:00

README.md

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