mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-12 11:25:13 +00:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
const dotenv = require('dotenv');
|
|
const app = require('./app');
|
|
|
|
dotenv.config({ path: './config.env' });
|
|
|
|
const port = process.env.PORT || 3000;
|
|
app.listen(port, () => {
|
|
console.log(`App running on port ${port}...`);
|
|
});
|