Skip to content

Instantly share code, notes, and snippets.

View GodmanAutomations's full-sized avatar

Stephen Godman GodmanAutomations

View GitHub Profile
@GodmanAutomations
GodmanAutomations / firebase_bootstrap.js
Created April 15, 2026 17:27
Firebase tax agent bootstrap
const fs = require('fs');
const path = require('path');
function mkdirp(dir) {
fs.mkdirSync(dir, { recursive: true });
}
function writeFile(filePath, content) {
mkdirp(path.dirname(filePath));
fs.writeFileSync(filePath, content);