Fatima Logofatima
Providers

infisical

"All-in-one platform to securely manage application configuration and secrets..."

Dependencies

npm install @infisical/sdk
pnpm add @infisical/sdk
yarn add @infisical/sdk

Importing the loader

env.config.ts
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
      }),
    ],
  },
});