diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c327b4a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM python:3.11-slim + +# env setup +WORKDIR /usr/local/src/lenaverse_bot + +# install lenaverse_bot +COPY . ./ +RUN set -ex; \ + # remove example app + rm -rf /app; \ + \ + python -m pip --no-cache-dir install ./ + +# run as unprivileged user +USER nobody + +CMD [ "lenaverse-bot" ] diff --git a/LICENSE b/LICENSE index 82f120f..f1b6152 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Yavook!de +Copyright (c) 2023 Lenaisten.de Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index a3b3729..b080c99 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ -# vscode-python3 +# lenaverse-bot -Use this template to jumpstart python development using Visual Studio Code! \ No newline at end of file +lenaverse-bot ist ein Discord-Bot, der den Lenaisten e.V. im LENAVERSE Discord vertritt. + +Berechtigte Mitglieder können über den `/post`-Befehl Ankündigungen in ausgewählten Channels veröffentlichen. +Außerdem gibt es einige öffentliche Befehle, mit denen die Benutzer Aktuelles über den Verein erfahren können. + +Allen Befehlen kann ein Präfix vorangestellt werden, sodass `/post` zB. als `/ev_post`. diff --git a/lenaverse_bot/__init__.py b/lenaverse_bot/__init__.py index 9254a05..02f491e 100644 --- a/lenaverse_bot/__init__.py +++ b/lenaverse_bot/__init__.py @@ -6,4 +6,4 @@ import discord discord.utils.setup_logging() _logger = logging.getLogger(__name__) -_logger.setLevel(os.getenv("LOG_LEVEL", logging.WARN)) +_logger.setLevel(os.getenv("LOG_LEVEL", logging.INFO))