This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { render } from "@react-email/components"; | |
import nodemailer from "nodemailer"; | |
import { EmailVerificationOTP } from "./templates/EmailVerificationOTP"; | |
import aws from "@aws-sdk/client-ses"; | |
import { defaultProvider } from "@aws-sdk/credential-provider-node"; | |
import Mail from "nodemailer/lib/mailer"; | |
// AWS | |
const provider = defaultProvider({ | |
profile: "profile", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
"net/http" | |
"net/http/httputil" | |
"net/url" | |
"sync" | |
"time" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// AuthStack.ts | |
import { Api, Auth, Stack } from "sst/constructs"; | |
export function AuthStack(stack: Stack) { | |
const auth = new Auth(stack, "auth", { | |
authenticator: { | |
handler: "functions/auth.handler", | |
}, | |
}); |