init.js 226 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import "dotenv/config" import "./db" import "../models/User" import app from "./server"; console.log("hihihihihih") const PORT = 3000 app.listen(PORT,() => console.log(`The Server is running on http://localhost:${PORT}`));