added docker file

This commit is contained in:
JBB0807 2025-04-28 09:53:22 -07:00
parent 8c5fe4266f
commit a94f4df283
17 changed files with 931 additions and 9 deletions

View file

@ -23,13 +23,13 @@ app.use(
app.use(passport.initialize());
app.use(passport.session());
app.use(
cors({
origin: "https://bytecamp-web.fly.dev",
methods: "GET",
credentials: true,
})
)
// app.use(
// cors({
// origin: process.env.ACCEPTED_ORIGINS.split(","),
// methods: "GET",
// credentials: true,
// })
// )
app.use("/auth", authRoute);