Fix dummy database and Docker logging

This commit is contained in:
Essem 2022-02-22 19:44:13 -06:00
parent 27215598f9
commit 71d30016a2
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
4 changed files with 13 additions and 8 deletions

View File

@ -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)

View File

@ -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"]

4
package-lock.json generated
View File

@ -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",

View File

@ -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() {}