diff --git a/Dockerfile b/Dockerfile index 27da97d..cdb438c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN bun install --frozen-lockfile # Copy the rest of the files and run the app USER bun -EXPOSE 3000/tcp +EXPOSE 3300/tcp COPY . . CMD [ "bun", "run", "src/index.ts" ] diff --git a/src/index.ts b/src/index.ts index 936f06a..58d8f9c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -12,7 +12,7 @@ import { Innertube } from "youtubei.js/web"; import { color } from "./utils/color"; import { REQUEST_KEY } from "./utils/constants"; -const PORT = 3000; +const PORT = 3300; console.log(figlet.textSync("BotGuard", { font: "Standard" })); console.log("--------------------------------------------------------------");