File size: 637 Bytes
d6654ca | 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 | /**
* Application entry point.
* @module main
*/
import express, { Request, Response } from 'express';
import cors from 'cors';
import helmet from 'helmet';
import dotenv from 'dotenv';
import { logger } from './utils/logger.js';
dotenv.config();
const app = express();
const PORT = process.env.PORT ?? 3000;
// Middleware
app.use(helmet());
app.use(cors());
app.use(express.json());
// Health check
app.get('/health', (_req: Request, res: Response): void => {
res.json({ status: 'ok', app: process.env.APP_NAME ?? 'MyApp' });
});
app.listen(PORT, () => {
logger.info(`Server running on port ${PORT}`);
});
export { app };
|