mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Added check for REDIS_URL. Closes #3677.
Some checks are pending
Node.js CI / build (postgresql, 18.18, 10) (push) Waiting to run
Some checks are pending
Node.js CI / build (postgresql, 18.18, 10) (push) Waiting to run
This commit is contained in:
parent
8787764e0e
commit
592f7c0ae7
3 changed files with 5 additions and 2 deletions
|
|
@ -36,6 +36,10 @@ async function checkEnv() {
|
|||
} else {
|
||||
success('DATABASE_URL is defined.');
|
||||
}
|
||||
|
||||
if (process.env.REDIS_URL) {
|
||||
success('REDIS_URL is defined.');
|
||||
}
|
||||
}
|
||||
|
||||
async function checkConnection() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue