diff --git a/.env.example b/.env.example index 1a6e80c..582a421 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,6 @@ -########### -# Required -########### +############ +# Required # +############ # Put environment type here (development, staging, or production) NODE_ENV=development @@ -21,9 +21,9 @@ OWNER= # Put default prefix here PREFIX=& -########### -# Optional -########### +############ +# Optional # +############ # Set this to true if you want the bot to stay in voice chats after sound effects and music have stopped # (you can still make the bot leave using the stop command) diff --git a/Dockerfile.bot b/Dockerfile.bot index 8941418..6cf9b2d 100644 --- a/Dockerfile.bot +++ b/Dockerfile.bot @@ -62,6 +62,10 @@ RUN mkdir /home/esmBot/temp RUN chown esmBot:esmBot /home/esmBot/temp RUN chmod 666 /home/esmBot/temp +RUN mkdir /home/esmBot/.internal/logs +RUN chown esmBot:esmBot /home/esmBot/.internal/logs +RUN chmod 666 /home/esmBot/.internal/logs + USER esmBot ENTRYPOINT ["node", "app.js"] diff --git a/package-lock.json b/package-lock.json index 2082942..f09ff65 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "esmbot", - "version": "1.7.1", + "version": "1.7.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "esmbot", - "version": "1.7.1", + "version": "1.7.2", "license": "MIT", "dependencies": { "@top-gg/sdk": "^3.1.1", diff --git a/utils/database/dummy.js b/utils/database/dummy.js index 6684c7a..15185c0 100644 --- a/utils/database/dummy.js +++ b/utils/database/dummy.js @@ -10,6 +10,7 @@ export async function addCount() {} export async function getCounts() { return {}; } +export async function upgrade() {} export async function disableCommand() {} export async function enableCommand() {} export async function disableChannel() {}