keyflux 0.1.15

A CLI tool and library for synchronizing environment secrets across multiple platforms including local files, GitHub Secrets, Supabase Vault, and Vercel Secrets. It facilitates secure management and automation of sensitive data.
Documentation
1
2
3
4
5
6
7
8
9
#!/usr/bin/env node

const cli = require("./index")
const arguments = process.argv.slice(2)

cli.run(arguments).catch((e) => {
    console.error(e)
    process.exit(1)
})