2026-03-12 13:03:44 +00:00
|
|
|
/**
|
|
|
|
|
* Copies missing env files from their .example templates, and warns about
|
|
|
|
|
* any keys present in the example but not set in the environment.
|
|
|
|
|
* Also warns about any VITE_ vars set in the environment that aren't listed
|
|
|
|
|
* in any example file.
|
|
|
|
|
*
|
|
|
|
|
* Usage:
|
|
|
|
|
* tsx scripts/setup-env.ts # checks .env
|
|
|
|
|
* tsx scripts/setup-env.ts --desktop # also checks .env.desktop
|
|
|
|
|
* tsx scripts/setup-env.ts --saas # also checks .env.saas
|
|
|
|
|
*/
|
|
|
|
|
|
2026-04-10 17:41:19 +01:00
|
|
|
import { existsSync, copyFileSync, readFileSync } from "fs";
|
|
|
|
|
import { join } from "path";
|
|
|
|
|
import { config, parse } from "dotenv";
|
2026-03-12 13:03:44 +00:00
|
|
|
|
|
|
|
|
// npm scripts run from the directory containing package.json (frontend/)
|
|
|
|
|
const root = process.cwd();
|
|
|
|
|
const args = process.argv.slice(2);
|
2026-04-10 17:41:19 +01:00
|
|
|
const isDesktop = args.includes("--desktop");
|
|
|
|
|
const isSaas = args.includes("--saas");
|
2026-03-12 13:03:44 +00:00
|
|
|
|
2026-04-10 17:41:19 +01:00
|
|
|
console.log("setup-env: see frontend/README.md#environment-variables for documentation");
|
2026-03-12 13:03:44 +00:00
|
|
|
|
|
|
|
|
function getExampleKeys(exampleFile: string): string[] {
|
|
|
|
|
const examplePath = join(root, exampleFile);
|
|
|
|
|
if (!existsSync(examplePath)) return [];
|
2026-04-10 17:41:19 +01:00
|
|
|
return Object.keys(parse(readFileSync(examplePath, "utf-8")));
|
2026-03-12 13:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function ensureEnvFile(envFile: string, exampleFile: string): boolean {
|
|
|
|
|
const envPath = join(root, envFile);
|
|
|
|
|
const examplePath = join(root, exampleFile);
|
|
|
|
|
|
|
|
|
|
if (!existsSync(examplePath)) {
|
|
|
|
|
console.warn(`setup-env: ${exampleFile} not found, skipping ${envFile}`);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!existsSync(envPath)) {
|
|
|
|
|
copyFileSync(examplePath, envPath);
|
|
|
|
|
console.log(`setup-env: created ${envFile} from ${exampleFile}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
config({ path: envPath });
|
|
|
|
|
|
2026-04-10 17:41:19 +01:00
|
|
|
const missing = getExampleKeys(exampleFile).filter((k) => !(k in process.env));
|
2026-03-12 13:03:44 +00:00
|
|
|
|
|
|
|
|
if (missing.length > 0) {
|
|
|
|
|
console.error(
|
|
|
|
|
`setup-env: ${envFile} is missing keys from ${exampleFile}:\n` +
|
2026-04-10 17:41:19 +01:00
|
|
|
missing.map((k) => ` ${k}`).join("\n") +
|
|
|
|
|
"\n Add them manually or delete your local file to re-copy from the example.",
|
2026-03-12 13:03:44 +00:00
|
|
|
);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let failed = false;
|
2026-04-10 17:41:19 +01:00
|
|
|
failed = ensureEnvFile(".env", "config/.env.example") || failed;
|
2026-03-12 13:03:44 +00:00
|
|
|
|
|
|
|
|
if (isDesktop) {
|
2026-04-10 17:41:19 +01:00
|
|
|
failed = ensureEnvFile(".env.desktop", "config/.env.desktop.example") || failed;
|
2026-03-12 13:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isSaas) {
|
2026-04-10 17:41:19 +01:00
|
|
|
failed = ensureEnvFile(".env.saas", "config/.env.saas.example") || failed;
|
2026-03-12 13:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Warn about any VITE_ vars set in the environment that aren't listed in any example file.
|
|
|
|
|
const allExampleKeys = new Set([
|
2026-04-10 17:41:19 +01:00
|
|
|
...getExampleKeys("config/.env.example"),
|
|
|
|
|
...getExampleKeys("config/.env.desktop.example"),
|
|
|
|
|
...getExampleKeys("config/.env.saas.example"),
|
2026-03-12 13:03:44 +00:00
|
|
|
]);
|
2026-04-10 17:41:19 +01:00
|
|
|
const unknownViteVars = Object.keys(process.env).filter((k) => k.startsWith("VITE_") && !allExampleKeys.has(k));
|
2026-03-12 13:03:44 +00:00
|
|
|
if (unknownViteVars.length > 0) {
|
|
|
|
|
console.warn(
|
2026-04-10 17:41:19 +01:00
|
|
|
"setup-env: the following VITE_ vars are set but not listed in any example file:\n" +
|
|
|
|
|
unknownViteVars.map((k) => ` ${k}`).join("\n") +
|
|
|
|
|
"\n Add them to the appropriate config/.env.*.example file if they are required.",
|
2026-03-12 13:03:44 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (failed) process.exit(1);
|