mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
import path from "node:path";
|
|
import fs from "fs-extra";
|
|
import type { ProjectConfig } from "../types";
|
|
import { generateAuthSecret } from "./auth-setup";
|
|
|
|
export async function setupEnvironmentVariables(
|
|
projectDir: string,
|
|
options: ProjectConfig,
|
|
): Promise<void> {
|
|
const serverDir = path.join(projectDir, "apps/server");
|
|
|
|
const envPath = path.join(serverDir, ".env");
|
|
let envContent = "";
|
|
|
|
if (await fs.pathExists(envPath)) {
|
|
envContent = await fs.readFile(envPath, "utf8");
|
|
}
|
|
|
|
if (!envContent.includes("CORS_ORIGIN")) {
|
|
envContent += "\nCORS_ORIGIN=http://localhost:3001";
|
|
}
|
|
|
|
if (options.auth) {
|
|
if (!envContent.includes("BETTER_AUTH_SECRET")) {
|
|
envContent += `\nBETTER_AUTH_SECRET=${generateAuthSecret()}`;
|
|
}
|
|
|
|
if (!envContent.includes("BETTER_AUTH_URL")) {
|
|
envContent += "\nBETTER_AUTH_URL=http://localhost:3000";
|
|
}
|
|
}
|
|
|
|
if (options.database !== "none") {
|
|
if (options.orm === "prisma" && !envContent.includes("DATABASE_URL")) {
|
|
const databaseUrlLine =
|
|
options.database === "sqlite"
|
|
? ""
|
|
: `\nDATABASE_URL="postgresql://postgres:postgres@localhost:5432/mydb?schema=public"`;
|
|
envContent += databaseUrlLine;
|
|
}
|
|
|
|
if (options.database === "sqlite" && !options.turso) {
|
|
if (!envContent.includes("TURSO_CONNECTION_URL")) {
|
|
envContent += "\nTURSO_CONNECTION_URL=http://127.0.0.1:8080";
|
|
}
|
|
}
|
|
}
|
|
|
|
await fs.writeFile(envPath, envContent.trim());
|
|
|
|
if (options.frontend.includes("web")) {
|
|
const clientDir = path.join(projectDir, "apps/web");
|
|
const clientEnvPath = path.join(clientDir, ".env");
|
|
let clientEnvContent = "";
|
|
|
|
if (await fs.pathExists(clientEnvPath)) {
|
|
clientEnvContent = await fs.readFile(clientEnvPath, "utf8");
|
|
}
|
|
|
|
if (!clientEnvContent.includes("VITE_SERVER_URL")) {
|
|
clientEnvContent += "VITE_SERVER_URL=http://localhost:3000\n";
|
|
}
|
|
|
|
await fs.writeFile(clientEnvPath, clientEnvContent.trim());
|
|
}
|
|
|
|
if (options.frontend.includes("native")) {
|
|
const nativeDir = path.join(projectDir, "apps/native");
|
|
const nativeEnvPath = path.join(nativeDir, ".env");
|
|
let nativeEnvContent = "";
|
|
|
|
if (await fs.pathExists(nativeEnvPath)) {
|
|
nativeEnvContent = await fs.readFile(nativeEnvPath, "utf8");
|
|
}
|
|
|
|
if (!nativeEnvContent.includes("EXPO_PUBLIC_SERVER_URL")) {
|
|
nativeEnvContent += "EXPO_PUBLIC_SERVER_URL=http://localhost:3000\n";
|
|
}
|
|
|
|
await fs.writeFile(nativeEnvPath, nativeEnvContent.trim());
|
|
}
|
|
}
|