mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
9 lines
196 B
JavaScript
9 lines
196 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',
|
|
_: [],
|
|
});
|