Rename database environment variables for consistency

This commit is contained in:
Aman Varshney
2025-04-09 08:42:23 +05:30
parent 33a43fcf14
commit 7504d2734f
10 changed files with 23 additions and 26 deletions

View File

@@ -19,17 +19,17 @@ export async function getDatabaseChoice(
{
value: "sqlite",
label: "SQLite",
hint: "by Turso",
hint: "lightweight, server-less, embedded relational database management system",
},
{
value: "postgres",
label: "PostgreSQL",
hint: "Traditional relational database",
hint: "powerful, open source object-relational database system",
},
{
value: "mongodb",
label: "MongoDB",
hint: "NoSQL document-oriented database",
hint: "open-source NoSQL database that stores data in JSON-like documents called BSON",
},
],
initialValue: DEFAULT_CONFIG.database,