load-env.mjs
11 lines 339 B
Raw
sha256:baa800aedf841dbf32081aa7b2befa288ac33dfc7175ac55014c55c4d8c742f9 docs: move durable-auth freeze/evidence to local developmen… Human 10 days ago
1 /**
2 * Load .env from project root. Call at startup so process.env has API keys etc.
3 * .env is gitignored; use .env.example as a template.
4 */
5
6 import dotenv from 'dotenv';
7 import path from 'path';
8 import { getRepoRoot } from './repo-root.mjs';
9
10 const projectRoot = getRepoRoot();
11 dotenv.config({ path: path.join(projectRoot, '.env') });
File History 1 commit
sha256:baa800aedf841dbf32081aa7b2befa288ac33dfc7175ac55014c55c4d8c742f9 docs: move durable-auth freeze/evidence to local developmen… Human 10 days ago