mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Merge branch 'dev' of https://github.com/umami-software/umami into feat/clickhouse-mv
This commit is contained in:
commit
77fcdc0646
157 changed files with 1780 additions and 1476 deletions
|
|
@ -44,7 +44,7 @@ async function checkConnection() {
|
|||
|
||||
success('Database connection successful.');
|
||||
} catch (e) {
|
||||
throw new Error('Unable to connect to the database.');
|
||||
throw new Error('Unable to connect to the database: ' + e.message);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ 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',
|
||||
_: [],
|
||||
port: process.env.PORT || 3000,
|
||||
hostname: process.env.HOSTNAME || '0.0.0.0',
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue