gOOvER changed my email to new one (#2489)

Co-authored-by: gOOvER <116325+gOOvER@users.noreply.github.com>
This commit is contained in:
Torsten Widmann 2023-10-05 18:47:50 +02:00 committed by GitHub
parent b8ae4b0a9d
commit c791eb2261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 22 additions and 22 deletions

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-04-23T18:47:53+02:00",
"name": "SogeBot",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "sogeBot - Free Twitch Bot built on Node.js https:\/\/sogebot.xyz\/",
"features": null,
"docker_images": {
@ -22,7 +22,7 @@
},
"scripts": {
"installation": {
"script": "#\/bin\/bash\r\n# Installscript for sogeBot | Author: info@goover.de\r\n\r\nexport DEBIAN_FRONTEND=noninteractive\r\n\r\napt -y update\r\napt install -y curl unzip jq python3 build-essential ca-certificates\r\n\r\nmkdir -p \/mnt\/server\r\ncd \/mnt\/server\r\nexport NODE_OPTIONS=--max-old-space-size=8192\r\nchown -R root:root \/mnt\r\n\r\n#Backup database & config\r\nmkdir -p .backup\r\ncp -f .env \/mnt\/server\/.backup\r\ncp -f sogebot.db \/mnt\/server\/.backup\r\n\r\n#delete old dir's to prevent errors on update\r\nrm -fR dest\r\nrm -fR public\r\nrm -fR node-modules\r\nrm -fR tools\r\n\r\n## get release info and download links\r\nLATEST_JSON=$(curl --silent \"https:\/\/api.github.com\/repos\/sogebot\/sogeBot\/releases\/latest\")\r\nRELEASES=$(curl --silent \"https:\/\/api.github.com\/repos\/sogebot\/sogeBot\/releases\")\r\nMATCH=sogeBot\r\n\r\nif [ -z \"${VERSION}\" ] || [ \"${VERSION}\" == \"latest\" ]; then\r\n DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url | grep -i ${MATCH})\r\nelse\r\n VERSION_CHECK=$(echo ${RELEASES} | jq -r --arg VERSION \"${VERSION}\" '.[] | select(.tag_name==$VERSION) | .tag_name')\r\n if [ \"${VERSION}\" == \"${VERSION_CHECK}\" ]; then\r\n DOWNLOAD_LINK=$(echo ${RELEASES} | jq -r --arg VERSION \"${VERSION}\" '.[] | select(.tag_name==$VERSION) | .assets[].browser_download_url' | grep -i ${MATCH})\r\n else\r\n echo -e \"defaulting to latest release\"\r\n DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url)\r\n fi\r\nfi\r\n\r\necho -e \"Downloading from $DOWNLOAD_LINK\"\r\ncurl -sSL -o sogeBot.zip ${DOWNLOAD_LINK}\r\n\r\nunzip -o sogeBot.zip\r\nrm -rf sogeBot.zip\r\n\r\n\r\necho \"--------------------------------------------------------------------------\"\r\necho \"Installing dependencies, this will take some time so sit back and relax...\"\r\necho \"IGNORE WARNINGS. THESE ARE NOT ERRORS !!!\"\r\necho \"--------------------------------------------------------------------------\"\r\n\r\nnpm install -g npm@8\r\n\r\nnpm install --verbose --force\r\n\r\necho -e \"install completed\"\r\nexit 0",
"script": "#\/bin\/bash\r\n# Installscript for sogeBot | Author: eggs@goover.dev\r\n\r\nexport DEBIAN_FRONTEND=noninteractive\r\n\r\napt -y update\r\napt install -y curl unzip jq python3 build-essential ca-certificates\r\n\r\nmkdir -p \/mnt\/server\r\ncd \/mnt\/server\r\nexport NODE_OPTIONS=--max-old-space-size=8192\r\nchown -R root:root \/mnt\r\n\r\n#Backup database & config\r\nmkdir -p .backup\r\ncp -f .env \/mnt\/server\/.backup\r\ncp -f sogebot.db \/mnt\/server\/.backup\r\n\r\n#delete old dir's to prevent errors on update\r\nrm -fR dest\r\nrm -fR public\r\nrm -fR node-modules\r\nrm -fR tools\r\n\r\n## get release info and download links\r\nLATEST_JSON=$(curl --silent \"https:\/\/api.github.com\/repos\/sogebot\/sogeBot\/releases\/latest\")\r\nRELEASES=$(curl --silent \"https:\/\/api.github.com\/repos\/sogebot\/sogeBot\/releases\")\r\nMATCH=sogeBot\r\n\r\nif [ -z \"${VERSION}\" ] || [ \"${VERSION}\" == \"latest\" ]; then\r\n DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url | grep -i ${MATCH})\r\nelse\r\n VERSION_CHECK=$(echo ${RELEASES} | jq -r --arg VERSION \"${VERSION}\" '.[] | select(.tag_name==$VERSION) | .tag_name')\r\n if [ \"${VERSION}\" == \"${VERSION_CHECK}\" ]; then\r\n DOWNLOAD_LINK=$(echo ${RELEASES} | jq -r --arg VERSION \"${VERSION}\" '.[] | select(.tag_name==$VERSION) | .assets[].browser_download_url' | grep -i ${MATCH})\r\n else\r\n echo -e \"defaulting to latest release\"\r\n DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url)\r\n fi\r\nfi\r\n\r\necho -e \"Downloading from $DOWNLOAD_LINK\"\r\ncurl -sSL -o sogeBot.zip ${DOWNLOAD_LINK}\r\n\r\nunzip -o sogeBot.zip\r\nrm -rf sogeBot.zip\r\n\r\n\r\necho \"--------------------------------------------------------------------------\"\r\necho \"Installing dependencies, this will take some time so sit back and relax...\"\r\necho \"IGNORE WARNINGS. THESE ARE NOT ERRORS !!!\"\r\necho \"--------------------------------------------------------------------------\"\r\n\r\nnpm install -g npm@8\r\n\r\nnpm install --verbose --force\r\n\r\necho -e \"install completed\"\r\nexit 0",
"container": "node:18-bullseye-slim",
"entrypoint": "bash"
}

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-03-04T15:04:21+01:00",
"name": "Among Us - Impostor Server",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Impostor is one of the first Among Us private servers, written in C#.\r\n\r\nThere are no special features at this moment, the goal is aiming to be as close as possible to the real server, for now. In a later stage, making modifications to game logic by modifying GameData packets can be looked at.",
"features": null,
"docker_images": {

View File

@ -6,7 +6,7 @@
},
"exported_at": "2021-11-26T14:44:12+01:00",
"name": "Citadel: Forged with Fire",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Citadel: Forged With Fire is a massive online sandbox RPG set in the mystical world of Ignus. Featuring magic, spellcasting, building, exploring and crafting as you fight to make a name for yourself and achieve notoriety across the land.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2022-10-07T17:08:45+02:00",
"name": "Craftopia",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Craftopia is the brand new multiplayer survival action game made in Japan. We combined many features we find enjoyable, such as hunting, farming, hack-and-slash, building, automation to develop this game.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-01-04T11:28:40+01:00",
"name": "Eco",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Eco is an online world from Strange Loop Games where players must build civilization using resources from an ecosystem that can be damaged and destroyed. The world of Eco is an incredibly reactive one, and whatever any player does in the world affects the underlying ecosystem.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-04-25T19:31:11+02:00",
"name": "Empyrion: Galactic Survival",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Empyrion: Galactic Survival dedicated server",
"features": null,
"docker_images": {

View File

@ -6,7 +6,7 @@
},
"exported_at": "2022-10-16T09:21:36+02:00",
"name": "Rising World Java Legacy",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Rising World is a voxel based open-world sandbox game, featuring a procedurally generated world, playable in single and multi-player.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2022-10-23T09:33:48+02:00",
"name": "Rising World Unity",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Rising World is a voxel based open-world sandbox game, featuring a procedurally generated world, playable in single and multi-player.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2021-11-14T11:16:57+01:00",
"name": "SCP:SL",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Egg for SCP: Secret Laboratory Dedicated Linux Server",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-01-09T14:18:18+01:00",
"name": "SCP:SL - Exiled",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Egg for SCP: Secret Laboratory Dedicated Linux Server with Exiled Plugin Framework",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2021-11-14T11:18:28+01:00",
"name": "SCP: Secret Laboratory - MultiAdmin",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "The latest vanilla version of SCP:SL running through MultiAdmin for compatibility. LocalAdmin does not work. No SMod2.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2022-10-24T20:12:31+02:00",
"name": "Solace Crafting",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Open-world fantasy survival RPG. Borderless distance-based difficulty with player built fast-travel, modular-building, and town management.",
"features": null,
"docker_images": {

View File

@ -6,7 +6,7 @@
},
"exported_at": "2022-01-20T12:58:19-05:00",
"name": "Soldat",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Soldat is a unique 2D (side-view) multiplayer action game. It has been influenced by the best of games such as Liero, Worms, Quake, and Counter-Strike and provides a fast-paced gaming experience with tons of blood and flesh. Soldiers fight against each other in 2D battle arenas using a deadly arsenal of military weapons, across 7 default game modes. It features 18 different weapons and 60 maps to frag away on, with full support for user created content.\r\n\r\nSteam: https:\/\/store.steampowered.com\/app\/638490\/Soldat\/",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-07-23T04:57:30-04:00",
"name": "Sons Of The Forest",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Sons of the Forest is a horror survival game and sequel to The Forest by Endnight Games, Ltd.. Sent to find a missing billionaire on a remote island, you find yourself in a cannibal-infested hellscape. Craft, build, and struggle to survive, alone or with friends.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-07-22T12:57:51+02:00",
"name": "Space Engineers",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Space Engineers is a voxel-based sandbox game set in space and on planets.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2022-11-26T17:31:15+01:00",
"name": "Space Engineers - Torch Server",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Torch is the successor to SE Server Extender and gives server admins the tools they need to keep their Space Engineers servers running smoothly. It features a user interface with live management tools and a plugin system so you can run your server exactly how you'd like. Torch is still in early development so there may be bugs and incomplete features.\r\n\r\n!!!!! DO NOT CANCEL THE FIRST START, OR YOU NEED TO DELETE THE SERVER AND CREATE FROM SCRATCH !!!!",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2022-12-30T11:39:51+01:00",
"name": "Stationeers",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Stationeers Server",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-03-03T16:16:01+01:00",
"name": "Valheim BepINex",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "A brutal exploration and survival game for 1-10 players, set in a procedurally-generated purgatory inspired by viking culture incl the Plugin Framework BepInEx",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-03-03T16:15:23+01:00",
"name": "Valheim Plus Mod",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "A brutal exploration and survival game for 1-10 players, set in a procedurally-generated purgatory inspired by viking culture.",
"features": [
"steam_disk_space"

View File

@ -6,7 +6,7 @@
},
"exported_at": "2023-10-01T10:06:16+02:00",
"name": "Uptime Kuma",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "Uptime Kuma is an easy-to-use self-hosted monitoring tool.",
"features": null,
"docker_images": {

View File

@ -5,7 +5,7 @@
},
"exported_at": "2020-12-05T08:58:33+01:00",
"name": "TS3 Manager",
"author": "info@goover.de",
"author": "eggs@goover.dev",
"description": "The Open Source Webinterface For TeamSpeak Servers",
"features": null,
"image": "quay.io\/parkervcp\/pterodactyl-images:base_debian",