load-env.mjs
11 lines 339 B
Raw
sha256:94ec65bd2b200240ac785a97cf14c5db066832bd608a24d6a9c151f17b918b02 feat(calendar): hosted bridge/gateway route parity and time… Human minor ⚠ breaking 35 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:94ec65bd2b200240ac785a97cf14c5db066832bd608a24d6a9c151f17b918b02 feat(calendar): hosted bridge/gateway route parity and time… Human minor 35 days ago