-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.js
32 lines (26 loc) · 972 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const express = require("express");
const path = require("path");
const cookieParser = require("cookie-parser");
const logger = require("morgan");
const indexRouter = require("./routes/index");
const blocksRouter = require("./routes/blocks");
const transactionsRouter = require("./routes/transactions");
const app = express();
app.use(logger("dev"));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, "public/build")));
app.use((req, res, next) => {
res.header("Access-Control-Allow-Origin", "http://127.0.0.1:8000");
res.header("Access-Control-Allow-Methods", "GET,PUT,POST,DELETE");
res.header("Access-Control-Allow-Headers", "Content-Type, Authorization");
next();
});
app.use("/", indexRouter);
app.use("/api/blocks", blocksRouter);
app.use("/api/transactions", transactionsRouter);
app.use("/*", (req, res) => {
res.redirect("/");
});
module.exports = app;