Created
October 12, 2021 16:45
-
-
Save radzserg/3a7dee4b06305ac5377a600dcdfcca91 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const app = express(); | |
const PORT = 8000; | |
const diContainer = configureDI(); | |
configureRouter(app, diContainer) | |
app.listen(PORT, () => { | |
console.log(`⚡️[server]: Server is running at http://localhost:${PORT}`); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment