first commit
This commit is contained in:
8
backend/server.js
Normal file
8
backend/server.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import app from './app.js';
|
||||
import config from './config/index.js';
|
||||
|
||||
const PORT = config.port || 3001;
|
||||
|
||||
app.listen(PORT, () => {
|
||||
console.log(`Envision backend running on port ${PORT}`);
|
||||
});
|
||||
Reference in New Issue
Block a user