BSD-3-Clause licensed by Tom Oram
Maintained by [email protected]
This version can be pinned in stack with:cfenv-0.1.0.0@sha256:6eb0a3d8d3ae5359cf4d9143949dd7515eb4603266472b6d84a3e111e0ff1a5a,2054

Module documentation for 0.1.0.0

Haskell CFEnv

Build Status

A port of go-cfenv for Haskell.

The purpose of this library is to assist you in writing Haskell apps that run on Cloud Foundry. It provides convenience functions and structures that map to Cloud Foundry environment variable primitives.

Usage

{-# LANGUAGE OverloadedStrings #-}

import Data.String (fromString)
import Data.Monoid (mconcat)

import Web.Scotty

import qualified System.CloudFoundry.Environment as CfEnv

main = do
  app <- CfEnv.current
  
  scotty (CfEnv.port app) $
    get "/" $ do
      html $ mconcat ["<pre>", (fromString (show app)), "</pre>"] 

Missing Functionality

  • Find services by pattern matching
  • Some cases from go-cfenv around handling missing data

Changes

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Haskell PVP.

[Unreleased]

[0.1.0.0] - 2018-06-25

Added

  • isRunningOnCf, lookupCurrent and current IO functions
  • withTag, withName and withLabel service searching functions
  • credentialString function for extracting credentials for services