Created
September 16, 2019 19:12
-
-
Save artemis15/883f874e9cfdeb1b5fba03b20bb8be9f to your computer and use it in GitHub Desktop.
Entry point of our application
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 server = require('./configs/app'); | |
const config = require('./configs/config/config'); | |
const db = require('./configs/db'); | |
//create the basic server setup | |
server.create(config, db); | |
//start the server | |
server.start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment