app.js 208 B

12345678910
  1. const express = require('express');
  2. require('dotenv').config();
  3. const port = 3000;
  4. const app = require('./src');
  5. app.listen(port, () => {
  6. console.log(`Server is running on http://localhost:${port}`);
  7. });