Fix dummy database and Docker logging
This commit is contained in:
parent
27215598f9
commit
71d30016a2
4 changed files with 13 additions and 8 deletions
12
.env.example
12
.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)
|
||||
|
|
|
@ -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
4
package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -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() {}
|
||||
|
|
Loading…
Reference in a new issue