mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
7 lines
170 B
JavaScript
7 lines
170 B
JavaScript
import 'dotenv/config';
|
|
import cli from 'next/dist/cli/next-start';
|
|
|
|
cli.nextStart({
|
|
port: process.env.PORT || 3000,
|
|
hostname: process.env.HOSTNAME || '0.0.0.0',
|
|
});
|