Skip to content

Commit

Permalink
remove deafult server port
Browse files Browse the repository at this point in the history
  • Loading branch information
adidoesnt committed Feb 4, 2024
1 parent 4370ae4 commit b0470b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion telegram-bot/src/components/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { Bot } from './bot';
import { type Logger as Log4js } from 'log4js';
import { Logger } from './logger';

const { PORT: port = 3000, TELEGRAM_BOT_TOKEN: token = '' } = process.env;
const { PORT: port, TELEGRAM_BOT_TOKEN: token = '' } = process.env;

export class Server {
static instance: Server;
Expand Down

0 comments on commit b0470b3

Please sign in to comment.