Compare commits

..

No commits in common. "2e95a5b912e7645055a5a025af9bcb9f32bae109" and "6e8974d54b8603c29bde7dfdef240cc62b7b1a3b" have entirely different histories.

5 changed files with 2 additions and 31 deletions

1
.gitignore vendored
View File

@ -8,7 +8,6 @@ tubearchivist.env
umami.env
gitea.env
redditbot.env
discord-bot.env
# example hooks
docker-hook.json

View File

@ -72,14 +72,6 @@ services:
- LETSENCRYPT_HOST=docs.tubearchivist.com
networks:
- tubearchivist_network
discord-bot:
container_name: discord-bot
build: https://github.com/tubearchivist/discord-bot.git
restart: always
env_file:
- ./env/discord-bot.env
networks:
- tubearchivist_network
# backend postgres
postgres:
image: postgres:15

View File

@ -1 +0,0 @@
BOT_TOKEN=xxxxxxxxxx

View File

@ -45,26 +45,7 @@ class WebhookBase:
"rebuild": [
["docker", "compose", "-f", "../docker/docker-compose.yml", "up", "-d", "--build", "docs"]
]
},
"jellyfin": {
"gh_user": "tubearchivist",
"gh_repo": "jellyfin",
"docker_user": "bbilly1",
"docker_repo": "tubearchivist-jf",
"build_release": [
"build", "--platform", "linux/amd64,linux/arm64",
"-t", "bbilly1/tubearchivist-jf",
"-t", "bbilly1/tubearchivist-jf:$VERSION", "--push"
],
"discord_release_hook": environ.get("GITHUB_RELEASE_HOOK_URL"),
},
"discord-bot": {
"gh_user": "tubearchivist",
"gh_repo": "discord-bot",
"rebuild": [
["docker", "compose", "-f", "../docker/docker-compose.yml", "up", "-d", "--build", "discord-bot"]
],
},
}
}
ROADMAP_HOOK_URL = environ.get("ROADMAP_HOOK_URL")
GH_HOOK_SECRET = environ.get("GH_HOOK_SECRET")

View File

@ -75,7 +75,7 @@ class GithubHook(WebhookBase):
print("commit not on master")
return
if self.repo in ["docs", "discord-bot"]:
if self.repo == "docs":
TaskHandler(self.repo_conf).create_task("rebuild")
return