diff options
| author | maksJopek <72977266+maksJopek@users.noreply.github.com> | 2021-04-05 00:30:46 +0200 |
|---|---|---|
| committer | maksJopek <72977266+maksJopek@users.noreply.github.com> | 2021-04-05 00:30:46 +0200 |
| commit | d928eab3ecefbf778f1cadece9beac010dc42332 (patch) | |
| tree | 87722460e8164205a6ec4b381632cfe50195d6f9 /backend/ts/index.ts | |
| parent | 292257d627bd1dfeafd772ac6457e2f54c2b73ba (diff) | |
| download | fia-d928eab3ecefbf778f1cadece9beac010dc42332.tar.gz fia-d928eab3ecefbf778f1cadece9beac010dc42332.tar.zst fia-d928eab3ecefbf778f1cadece9beac010dc42332.zip | |
Small step in good direction
Diffstat (limited to 'backend/ts/index.ts')
| -rw-r--r-- | backend/ts/index.ts | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/backend/ts/index.ts b/backend/ts/index.ts index fd8f8e1..ead29f2 100644 --- a/backend/ts/index.ts +++ b/backend/ts/index.ts @@ -7,15 +7,18 @@ dotenv.config(); const app = express(); const PORT = 8000; -if (!process.env.SESSION_KEY) - throw Error("SESSION_KEY is undefined"); +if (!process.env.SESSION_KEY) process.env.SESSION_KEY = "ouh2981w1pjd9"; +// throw Error("SESSION_KEY is undefined"); -app.use(session({ secret: process.env.SESSION_KEY, cookie: { maxAge: 60000 } })) +app.use( + session({ secret: process.env.SESSION_KEY, cookie: { maxAge: 60000 } }) +); app.use("/", express.static("./public")); -app.get("/favicon.ico", (req, res) => res.redirect("https://lukesmith.xyz/favicon.ico")); -app.get("/blank", (req, res) => res.send("")); -app.post("/login", (req, res, next) => login(req, res)); +app.get("/favicon.ico", (req, res) => + res.redirect("https://lukesmith.xyz/favicon.ico") +); +app.post("/login", (req, res) => login(req, res)); app.listen(PORT, () => { console.log(`[server]: Server is running at https://localhost:${PORT}`); |
