aboutsummaryrefslogtreecommitdiff
path: root/app.js
blob: a5270747a063027aa3b1dce821fffeea907a946f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require("dotenv").config();
const express = require("express");

const motto = require("./motto");
const auth = require("./auth");

const app = express();

app.use(express.urlencoded({ extended: true }));
app.use(express.json());

app.get("/", (req, res) => res.redirect("/motto"));
app.use("/motto", motto);
app.use("/auth", auth);

app.listen(5005, () => console.log("Server started on http://localhost:5005"));