Skip to content

Commit

Permalink
🔧 chore: Change default port to 3300
Browse files Browse the repository at this point in the history
  • Loading branch information
kms0219kms committed Sep 15, 2024
1 parent 47ec4c0 commit d548ae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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("--------------------------------------------------------------");
Expand Down

0 comments on commit d548ae7

Please sign in to comment.