Skip to content

Instantly share code, notes, and snippets.

@artemis15
Created September 16, 2019 19:12
Show Gist options
  • Save artemis15/883f874e9cfdeb1b5fba03b20bb8be9f to your computer and use it in GitHub Desktop.
Save artemis15/883f874e9cfdeb1b5fba03b20bb8be9f to your computer and use it in GitHub Desktop.
Entry point of our application
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