Liking cljdoc? Tell your friends :D

cdk.config

Provides functions for building the configuration that the CDK project will use.

Provides functions for building the configuration that the CDK project will use.
raw docstring

env!clj

(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.
sourceraw docstring

load-env-ednclj

(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.
sourceraw docstring

load-env-edn!clj

(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.
sourceraw docstring

load-env-path-file-ednclj

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.
sourceraw docstring

load-env-path-file-edn!clj

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.
sourceraw docstring

load-env-path-resource-ednclj

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.
sourceraw docstring

load-env-path-resource-edn!clj

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.
sourceraw docstring

load-file-ednclj

(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.
sourceraw docstring

load-file-edn!clj

(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.
sourceraw docstring

load-resource-ednclj

(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.
sourceraw docstring

load-resource-edn!clj

(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.
sourceraw docstring

simpleclj

(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`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close