Skip to content

Commit

Permalink
OPS : fix wrong port
Browse files Browse the repository at this point in the history
  • Loading branch information
juliecoust committed Jul 9, 2024
1 parent 3bc35bc commit 4062018
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/infra/mailer/nodemailer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export class NodemailerAdapter implements MailerWrapper {//implements sendeamils
node_env: string;

constructor(base_url_path: string, mail_sender: string, node_env: string) {
console.log("base_url_path : " + base_url_path)
this.base_url_path = base_url_path;
this.mail_sender = mail_sender;
this.node_env = node_env;
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const config = {

PORT_LOCAL: parseInt(process.env.PORT_LOCAL as string, 10),
BASE_URL_LOCAL: process.env.BASE_URL_LOCAL || '',
PORT_PUBLIC: parseInt(process.env.PORT_LOCAL as string, 10),
PORT_PUBLIC: parseInt(process.env.PORT_PUBLIC as string, 10),
BASE_URL_PUBLIC: process.env.BASE_URL_PUBLIC || '',

ACCESS_TOKEN_SECRET: process.env.ACCESS_TOKEN_SECRET || '',
Expand Down

0 comments on commit 4062018

Please sign in to comment.