in packages/cli/src/commands/init.ts [1137:1164]
function getEnvDescription(env: string) {
if (env === "DATABASE_HOST") {
return `"The host of your database"`;
}
if (env === "DATABASE_PORT") {
return `"The port of your database"`;
}
if (env === "DATABASE_USER") {
return `"The username of your database"`;
}
if (env === "DATABASE_PASSWORD") {
return `"The password of your database"`;
}
if (env === "DATABASE_NAME") {
return `"The name of your database"`;
}
if (env === "DATABASE_URL") {
return `"The URL of your database"`;
}
if (env === "BETTER_AUTH_SECRET") {
previouslyGeneratedSecret =
previouslyGeneratedSecret ?? generateSecretHash();
return `"${previouslyGeneratedSecret}"`;
}
if (env === "BETTER_AUTH_URL") {
return `"http://localhost:3000" # Your APP URL`;
}
}