mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-01 12:29:35 +01:00
8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
require('dotenv').config();
|
|
const cli = require('next/dist/cli/next-start');
|
|
|
|
cli.nextStart({
|
|
port: process.env.PORT || 3000,
|
|
hostname: process.env.HOSTNAME || '0.0.0.0',
|
|
});
|