You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment the bot uses the Github token which is stored in the .env file. To allow the bot to be used by multiple users we need to store a combination of a telegram chatID and a Github api token in a database and adjust the code a bit.
I would suggest to use a sqlLite DB since we have almost no external write access and the bot reads in a big interval.
Tasks would be:
add sqlLite db
add telegram command to add a new user
adjust docker file that the db is stored outside the docker container
adjust code so that for each user in the db the check is done
The text was updated successfully, but these errors were encountered:
At the moment the bot uses the Github token which is stored in the
.env
file. To allow the bot to be used by multiple users we need to store a combination of a telegramchatID
and a Githubapi token
in a database and adjust the code a bit.I would suggest to use a sqlLite DB since we have almost no external write access and the bot reads in a big interval.
Tasks would be:
The text was updated successfully, but these errors were encountered: