Replace USER with GITLAB_USER

This commit is contained in:
Aditya Thakral 2021-06-07 21:28:49 -04:00
parent bfa7883a48
commit df877107a3
1 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@ import Express from "express";
const app = Express();
const PORT = process.env.PORT;
const base64 = Buffer.from(`${process.env.USER}:${process.env.PASS}`).toString(
"base64",
);
const base64 = Buffer.from(
`${process.env.GITLAB_USER}:${process.env.PASS}`,
).toString("base64");
app.use(Express.static(__dirname + "/out"));