The discord scheduled event calendar generator https://divent.crystalyx.net
Go to file
Michel Roux 40e7221182
continuous-integration/drone/push Build is passing Details
Merge pull request 'Update dependency djlint to v1.29.0' (#129) from renovate/djlint-1.x-lockfile into master
Reviewed-on: #129
2023-05-23 10:09:51 +00:00
divent Remove Sentry again 2023-04-20 10:58:49 +02:00
.drone.yml Back to 3.8.1 and fix poetry issue 2023-02-28 12:00:32 +01:00
.env.dist First part of the oauth authentication 2022-09-11 22:05:05 +00:00
.flake8 Small fixes and add py.typed 2023-01-16 17:21:09 +01:00
.gitignore init project 2022-09-08 14:21:01 +00:00
Dockerfile Update python Docker tag to v3.11.3 2023-04-06 00:22:06 +00:00
README.md Fix README and update version 2022-09-12 20:22:28 +00:00
poetry.lock Update dependency djlint to v1.29.0 2023-05-23 00:37:27 +00:00
pyproject.toml Update dependency uvicorn to ^0.22.0 2023-04-29 00:10:18 +00:00
renovate.json Revert "Use a new image for poetry on drone" 2022-09-11 19:35:12 +00:00

README.md

Divent

The discord scheduled event calendar generator

Build Status 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