Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarri committed Feb 4, 2019
1 parent 354f13f commit 21f5994
Show file tree
Hide file tree
Showing 19 changed files with 3,920 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .env.sample
@@ -0,0 +1,6 @@
NODE_ENV=development
PORT=3000
LOG_LEVEL=*:*
CORS_ORIGIN="*"

GATEWAY_DOMAIN="https://gateway.sirius.lightstreams.io"
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -59,3 +59,6 @@ typings/

# next.js build output
.next

# Project
.env
93 changes: 93 additions & 0 deletions bin/www
@@ -0,0 +1,93 @@
#!/usr/bin/env node

/**
* Module dependencies.
*/

require('../src/config/env');

const app = require('../src/app');
const debug = require('debug')('server');
const http = require('http');

/**
* Get port from environment and store in Express.
*/

const port = normalizePort(process.env.PORT || '3000');
app.set('port', port);

/**
* Create HTTP server.
*/

const server = http.createServer(app);

/**
* Listen on provided port, on all network interfaces.
*/

server.listen(port, '0.0.0.0');
server.on('error', onError);
server.on('listening', onListening);


/**
* Normalize a port into a number, string, or false.
*/

function normalizePort(val) {
const port = parseInt(val, 10);

if (isNaN(port)) {
// named pipe
return val;
}

if (port >= 0) {
// port number
return port;
}

return false;
}

/**
* Event listener for HTTP server "error" event.
*/

function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}

const bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;

// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}

/**
* Event listener for HTTP server "listening" event.
*/

function onListening() {
const addr = server.address();
const bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
console.log(`Listening on ${bind}`);
}

0 comments on commit 21f5994

Please sign in to comment.