mirror of
https://github.com/JetSprow/J-Board-Lite.git
synced 2026-05-01 01:14:10 +05:30
release: prepare J-Board Lite 3.1.1
This commit is contained in:
@@ -772,7 +772,7 @@ model AuditLog {
|
||||
|
||||
model AppConfig {
|
||||
id String @id @default("default")
|
||||
siteName String @default("J-Board")
|
||||
siteName String @default("J-Board Lite")
|
||||
siteUrl String?
|
||||
subscriptionUrl String?
|
||||
allowRegistration Boolean @default(true)
|
||||
|
||||
@@ -17,7 +17,7 @@ async function main() {
|
||||
const adminEmail = envValue("ADMIN_EMAIL", "admin@jboard.local").toLowerCase();
|
||||
const adminPassword = process.env.ADMIN_PASSWORD || "admin123";
|
||||
const adminName = envValue("ADMIN_NAME", "Admin");
|
||||
const siteName = envValue("SITE_NAME", "J-Board");
|
||||
const siteName = envValue("SITE_NAME", "J-Board Lite");
|
||||
const siteUrl = process.env.NEXTAUTH_URL?.trim() || null;
|
||||
const subscriptionUrl = process.env.SUBSCRIPTION_URL?.trim() || null;
|
||||
const hashedPassword = await bcrypt.hash(adminPassword, 12);
|
||||
|
||||
Reference in New Issue
Block a user