init commit
This commit is contained in:
35
setup.mjs
Normal file
35
setup.mjs
Normal file
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* This script runs `npx @convex-dev/auth` to help with setting up
|
||||
* environment variables for Convex Auth.
|
||||
*
|
||||
* You can safely delete it and remove it from package.json scripts.
|
||||
*/
|
||||
|
||||
import fs from "fs";
|
||||
import { config as loadEnvFile } from "dotenv";
|
||||
import { spawnSync } from "child_process";
|
||||
|
||||
if (!fs.existsSync(".env.local")) {
|
||||
// Something is off, skip the script.
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const config = {};
|
||||
loadEnvFile({ path: ".env.local", processEnv: config });
|
||||
|
||||
const runOnceWorkflow = process.argv.includes("--once");
|
||||
|
||||
if (runOnceWorkflow && config.SETUP_SCRIPT_RAN !== undefined) {
|
||||
// The script has already ran once, skip.
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const result = spawnSync("npx", ["@convex-dev/auth", "--skip-git-check"], {
|
||||
stdio: "inherit",
|
||||
});
|
||||
|
||||
if (runOnceWorkflow) {
|
||||
fs.writeFileSync(".env.local", `\nSETUP_SCRIPT_RAN=1\n`, { flag: "a" });
|
||||
}
|
||||
|
||||
process.exit(result.status);
|
Reference in New Issue
Block a user