Fatima Logofatima

infisical

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

Dependencies

npm install @infisical/sdk

Importing the loader

env.config.ts
import { config, adapters } from "fatima";
import { InfisicalSDK } from "@infisical/sdk";
 
export default config({
  load: {
    development: [
      adapters.local.load(".env"),
      adapters.infisical.load(InfisicalSDK, {
        // You can check here the needed options, they can be loaded through the previous loader
      }),
    ],
  },
});

On this page