Providers
infisical
"All-in-one platform to securely manage application configuration and secrets..."
Dependencies
npm install @infisical/sdkpnpm add @infisical/sdkyarn add @infisical/sdkImporting the loader
import { config, providers } from "fatima";
export default config({
providers: {
development: [
providers.local(".env"),
providers.infisical({
// This provider can now read auth values loaded by the previous provider
}),
],
},
});