mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
fix: supabase postgres passwd
This commit is contained in:
parent
724de2c1b9
commit
b0d604d12b
@ -2,6 +2,7 @@ import {
|
||||
type Schema,
|
||||
type Template,
|
||||
generateBase64,
|
||||
generatePassword,
|
||||
generateHash,
|
||||
generateRandomDomain,
|
||||
} from "../utils";
|
||||
@ -11,7 +12,7 @@ export function generate(schema: Schema): Template {
|
||||
const randomDomain = generateRandomDomain(schema);
|
||||
const secretBase = generateBase64(64);
|
||||
|
||||
const postgresPassword = generateBase64(32);
|
||||
const postgresPassword = generatePassword(32);
|
||||
const jwtSecret = generateBase64(32);
|
||||
const dashboardPassword = generateBase64(32);
|
||||
const logflareApiKey = generateBase64(64);
|
||||
|
Loading…
Reference in New Issue
Block a user