23brewert
23brewert
Explore posts from servers
CDCloudflare Developers
Created by 23brewert on 10/28/2024 in #general-help
Zero Trust Access Gateway showing as disabled on Edge but enabled on Firefox
Bumping
3 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 8/13/2024 in #djs-questions
User Context Menu in group dms - not sending interaction to gateway
Thank you!
6 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 8/13/2024 in #djs-questions
User Context Menu in group dms - not sending interaction to gateway
so I can track it
6 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 8/13/2024 in #djs-questions
User Context Menu in group dms - not sending interaction to gateway
is there a issue posted somewhere?
6 replies
NNuxt
Created by 23brewert on 5/20/2024 in #❓・help
Issues running nuxt 3 with docker
here is my docker ignore file:
# Include any files or directories that you don't want to be copied to your
# container here (e.g., local build artifacts, temporary files, etc.).
#
# For more help, visit the .dockerignore file reference guide at
# https://docs.docker.com/go/build-context-dockerignore/

**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.next
**/.cache
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/charts
**/docker-compose*
**/compose.y*ml
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
**/build
**/dist
LICENSE
README.md
# Include any files or directories that you don't want to be copied to your
# container here (e.g., local build artifacts, temporary files, etc.).
#
# For more help, visit the .dockerignore file reference guide at
# https://docs.docker.com/go/build-context-dockerignore/

**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.next
**/.cache
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/charts
**/docker-compose*
**/compose.y*ml
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
**/build
**/dist
LICENSE
README.md
3 replies
NNuxt
Created by 23brewert on 5/20/2024 in #❓・help
Issues running nuxt 3 with docker
Here is my dockerfile [I got it from an article]
# use node 20 alpine image
FROM node:20-alpine

# create work directory in app folder
WORKDIR /app

# install required packages for node image
RUN apk --no-cache add openssh g++ make python3 git

# copy over package.json files
COPY package.json /app/
COPY package-lock.json /app/

# install all depencies
RUN npm ci && npm cache clean --force

# copy over all files to the work directory
ADD . /app

# build the project
RUN npm run build

# expose the host and port 3000 to the server
ENV HOST 0.0.0.0
EXPOSE 4000

# run the build project with node
ENTRYPOINT ["node", ".output/server/index.mjs"]
# use node 20 alpine image
FROM node:20-alpine

# create work directory in app folder
WORKDIR /app

# install required packages for node image
RUN apk --no-cache add openssh g++ make python3 git

# copy over package.json files
COPY package.json /app/
COPY package-lock.json /app/

# install all depencies
RUN npm ci && npm cache clean --force

# copy over all files to the work directory
ADD . /app

# build the project
RUN npm run build

# expose the host and port 3000 to the server
ENV HOST 0.0.0.0
EXPOSE 4000

# run the build project with node
ENTRYPOINT ["node", ".output/server/index.mjs"]
3 replies
DIAdiscord.js - Imagine an app
Created by Paras on 3/7/2023 in #djs-questions
how can i get mutual guild between user and bot?
5 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 7/18/2023 in #djs-questions
get client from interaction
thanks, [also figured it would be helpful to have in the forum for search]
5 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
Checked the firewall and there is not blocked ports.
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
I know it works on my PC because I can hear music when I join the voice channel with the bot...
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
PC & Server: [email protected] PC Node: v16.16.0 Server Node: v16.19.0
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 12/14/2022 in #djs-questions
How to add additional information to Buttons other than customId
Discord.js Version: [email protected] Node Version v16.9.0
6 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 7/15/2022 in #djs-questions
Type DiscordAPIError [discord.js]
Alright noted, thanks.
4 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 7/15/2022 in #djs-questions
Type DiscordAPIError [discord.js]
ah okay, I used the discord-modals npm library and it displayed but then there was an error at the end and thought it would be better to change it back to discord.js. So I just thought discord.js supported it too.
4 replies