Skip to content
Snippets Groups Projects
index.ts 593 B
Newer Older
Wilson JALLET's avatar
Wilson JALLET committed
/**
Guillaume WANG's avatar
Guillaume WANG committed
 * @file Lance le serveur configuré dans {@link app.ts}
 * @author manifold
Wilson JALLET's avatar
Wilson JALLET committed
 */
Guillaume WANG's avatar
Guillaume WANG committed
import dotenv from 'dotenv'; //loads environment variables from (hidden) .env file into process.env
Wilson JALLET's avatar
Wilson JALLET committed
dotenv.config();
Wilson JALLET's avatar
Wilson JALLET committed
import colors from 'colors';
Guillaume WANG's avatar
Guillaume WANG committed
const port = process.env.PORT;
Wilson JALLET's avatar
Wilson JALLET committed
const hostnameConfigMap = {
    'development': 'localhost',
    'staging': '0.0.0.0',
    'production': '0.0.0.0'
};
const hostname = process.env.HOST || hostnameConfigMap[process.env.TARGET_ENV];
Guillaume WANG's avatar
Guillaume WANG committed
app.listen(port, () => {
Wilson JALLET's avatar
Wilson JALLET committed
    console.log(colors.blue("🚀  Server ready on %s:%s."), hostname, port);