This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/index.js

38 lines
1.0 KiB
JavaScript

require('./init');
if (process.env.NODE_ENV === 'production') {
console.log(
'\n\x1b[33m%s\x1b[0m',
'Running Outline in production mode. Use `yarn dev` to run in development with live code reloading'
);
} else if (process.env.NODE_ENV === 'development') {
console.log(
'\n\x1b[33m%s\x1b[0m',
'Running Outline in development mode with hot reloading. To run Outline in production mode, use `yarn start`'
);
}
if (
!process.env.SECRET_KEY ||
process.env.SECRET_KEY ===
'F0E5AD933D7F6FD8F4DBB3E038C501C052DC0593C686D21ACB30AE205D2F634B'
) {
console.error(
'Please set SECRET_KEY env variable with output of `openssl rand -hex 32`'
);
process.exit(1);
}
const app = require('./server').default;
const http = require('http');
const server = http.createServer(app.callback());
server.listen(process.env.PORT || '3000');
server.on('error', err => {
throw err;
});
server.on('listening', () => {
const address = server.address();
console.log(`\n> Listening on http://localhost:${address.port}\n`);
});