mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-04 18:14:53 +02:00
Add db to express server
This commit is contained in:
parent
ff8b844031
commit
79d7214137
2 changed files with 22 additions and 4 deletions
|
@ -6,20 +6,31 @@ import logger from "@server/logger";
|
|||
import helmet from "helmet";
|
||||
import cors from "cors";
|
||||
import unauth from "@server/routers/unauth";
|
||||
import Database from 'better-sqlite3';
|
||||
|
||||
const dev = environment.ENVIRONMENT !== "prod";
|
||||
const app = next({ dev });
|
||||
const handle = app.getRequestHandler();
|
||||
|
||||
const port = environment.PORT;
|
||||
|
||||
app.prepare().then(() => {
|
||||
const server = express();
|
||||
let db: Database.Database;
|
||||
|
||||
app.prepare().then(() => {
|
||||
// Open the SQLite database connection
|
||||
db = new Database(`${environment.CONFIG_PATH}/db/db.sqlite`, { verbose: console.log });
|
||||
|
||||
const server = express();
|
||||
server.use(helmet());
|
||||
server.use(cors());
|
||||
|
||||
const prefix = `/api`;
|
||||
const prefix = `/api/${environment.API_VERSION}`;
|
||||
|
||||
// Middleware to attach db to req object
|
||||
server.use((req: Request & { db?: Database.Database }, res: Response, next) => {
|
||||
req.db = db;
|
||||
next();
|
||||
});
|
||||
|
||||
server.use(prefix, express.json(), unauth);
|
||||
|
||||
server.all("*", (req: Request, res: Response) => {
|
||||
|
@ -34,3 +45,8 @@ app.prepare().then(() => {
|
|||
logger.info(`Server is running on http://localhost:${port}`);
|
||||
});
|
||||
});
|
||||
|
||||
process.on('SIGINT', () => {
|
||||
db.close();
|
||||
process.exit(0);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue