first commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import app from "./app";
|
||||
import dotenv from "dotenv";
|
||||
|
||||
dotenv.config();
|
||||
|
||||
const PORT = process.env.PORT || 3002;
|
||||
|
||||
app.listen(PORT, () => {
|
||||
console.log(`Server is running on port ${PORT}`);
|
||||
});
|
||||
Reference in New Issue
Block a user