From fc58a5db0affe17fb2324d75d8a45d4b608d6c5a Mon Sep 17 00:00:00 2001 From: Faye Date: Wed, 21 Jul 2021 00:58:36 +0200 Subject: [PATCH] Update egg-discord-js-generic.json This pr removes some useless code and removes the --production on npm install, as discord often uses -dev packages and removes confusion. Makes it generally more simple for people to run bots without having to figure out to remove the --production (not needed for bots) --- bots/discord/discord.js/egg-discord-js-generic.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bots/discord/discord.js/egg-discord-js-generic.json b/bots/discord/discord.js/egg-discord-js-generic.json index 4753aa92..59c89f33 100644 --- a/bots/discord/discord.js/egg-discord-js-generic.json +++ b/bots/discord/discord.js/egg-discord-js-generic.json @@ -17,7 +17,7 @@ "quay.io\/parkervcp\/pterodactyl-images:debian_nodejs-10" ], "file_denylist": [], - "startup": "if [[ -d .git ]] && [[ {{AUTO_UPDATE}} == \"1\" ]]; then git pull; fi; if [[ ! -z ${NODE_PACKAGES} ]]; then \/usr\/local\/bin\/npm install ${NODE_PACKAGES}; fi; if [ -f \/home\/container\/package.json ]; then \/usr\/local\/bin\/npm install --production; fi; \/usr\/local\/bin\/node \/home\/container\/{{BOT_JS_FILE}}", + "startup": "if [[ -d .git ]] && [[ {{AUTO_UPDATE}} == \"1\" ]]; then git pull; fi; if [[ ! -z ${NODE_PACKAGES} ]]; then npm install ${NODE_PACKAGES}; fi; if [ -f \/home\/container\/package.json ]; then npm install; fi; node \/home\/container\/{{BOT_JS_FILE}}", "config": { "files": "{}", "startup": "{\r\n \"done\": \"change this part\"\r\n}", @@ -105,4 +105,4 @@ "rules": "nullable|string" } ] -} \ No newline at end of file +}