-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Include the value of an environment variable at compile time -- -- Embed secrets (e.g. API keys) inside production artifacts without -- checking them into the repository. @package include-env @version 0.1.0.0 -- | Include the value of an environment variable at compile time -- --

Rationale

-- -- The first use case for this library is to embed secrets (e.g. API -- keys) inside production artifacts without checking them into the -- repository. module IncludeEnv.TH -- | Include the value of an environment variable at compile time -- -- A fresh variable is declared each time this is computation is -- evaluated includeEnv :: String -> String -> Q [Dec]