Popularity
1.3
Declining
Activity
0.0
Stable
0
2
0
Monthly Downloads: 17
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
Library
Latest version: v0.1.0.0
cfenv alternatives and similar packages
Based on the "Library" category.
Alternatively, view cfenv alternatives based on common mentions on social networks and blogs.
-
antlr-haskell
A language parsing quasiquoter for Haskell based heavily on ANTLR4. -
par-dual
:repeat: ParDual class for a Parallel <-> Sequential relationship
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of cfenv or a related project?
README
Haskell CFEnv
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>"]
Documentation
For me information see cfenv on Hackage.
Missing Functionality
- Find services by pattern matching
- Some cases from go-cfenv around handling missing data