Provides functions for building the configuration that the CDK project will use.
Provides functions for building the configuration that the CDK project will use.
(env! field)
Gets a variable from the environment. Throws an exception if the value is not set.
Gets a variable from the environment. Throws an exception if the value is not set.
(load-env-edn env-var)
Loads EDN configuration value that is stored in an environment variable. Returns nil
if the environment variable does not exist.
Throws an exception if the content is malformed.
Loads EDN configuration value that is stored in an environment variable. Returns `nil` if the environment variable does not exist. Throws an exception if the content is malformed.
(load-env-edn! env-var)
Loads EDN configuration value that is stored in an environment variable. Throws an exception if the environment variable does not exist or the content is malformed.
Loads EDN configuration value that is stored in an environment variable. Throws an exception if the environment variable does not exist or the content is malformed.
Looks up a file system path from an environment variable, then loads the content of the file from the file system as EDN.
Returns nil
if the file does not exist. Throws an exception if the content is malformed.
Looks up a file system path from an environment variable, then loads the content of the file from the file system as EDN. Returns `nil` if the file does not exist. Throws an exception if the content is malformed.
Looks up a file system path from an environment variable, then loads the content of the file from the file system as EDN. Throws an exception if the file does not exist or is malformed.
Looks up a file system path from an environment variable, then loads the content of the file from the file system as EDN. Throws an exception if the file does not exist or is malformed.
Looks up a resource path from an environment variable, then loads the content of the resource from the classpath as EDN.
Returns nil
if the resource does not exist. Throws an exception if the resource is malformed.
Looks up a resource path from an environment variable, then loads the content of the resource from the classpath as EDN. Returns `nil` if the resource does not exist. Throws an exception if the resource is malformed.
Looks up a resource path from an environment variable, then loads the content of the resource from the classpath as EDN. Throws an exception if the resource does not exist or is malformed.
Looks up a resource path from an environment variable, then loads the content of the resource from the classpath as EDN. Throws an exception if the resource does not exist or is malformed.
(load-file-edn path)
Loads an EDN file from OS file system. Returns nil
if the resource does not exist. Throws an exception if the resource is malformed.
Loads an EDN file from OS file system. Returns `nil` if the resource does not exist. Throws an exception if the resource is malformed.
(load-file-edn! path)
Loads an EDN file from OS file system. Throws an exception if the resource does not exists or is malformed.
Loads an EDN file from OS file system. Throws an exception if the resource does not exists or is malformed.
(load-resource-edn path)
Loads an EDN file from java classpath. Returns nil
if the resource does not exist. Throws an exception if the resource is malformed.
Loads an EDN file from java classpath. Returns `nil` if the resource does not exist. Throws an exception if the resource is malformed.
(load-resource-edn! path)
Loads an EDN file from java classpath. Throws an exception if the resource does not exist or is malformed.
Loads an EDN file from java classpath. Throws an exception if the resource does not exist or is malformed.
(simple)
Builds a simple configuration to use in the CDK process. Loads configuration data in the following order, with later loading taking precedence.
. Classpath resource @ cdk.config.edn
. File @ cdk.config.edn
. Classpath resource found at location found in environment variable CDK_CONFIG_RESOUCE_PATH
. File found at location found in environment variable CDK_CONFIG_FILE_PATH
. EDN found in environment variable CDK_CONFIG_EDN
Builds a simple configuration to use in the CDK process. Loads configuration data in the following order, with later loading taking precedence. . Classpath resource @ `cdk.config.edn` . File @ `cdk.config.edn` . Classpath resource found at location found in environment variable `CDK_CONFIG_RESOUCE_PATH` . File found at location found in environment variable `CDK_CONFIG_FILE_PATH` . EDN found in environment variable `CDK_CONFIG_EDN`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close