GitXplorerGitXplorer
a

flatmap.io

public
0 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
4b33cc8f09a95b9ab220121cb0d0836b10dfc679

Remove crashtest integration

vvadimbakaev committed 5 years ago
Unverified
315e61f6c012371c57995f4012fbb262e92fd135

add crashtest verification file

vvadimbakaev committed 5 years ago
Unverified
fff9593e484537f153592839ee811155a587142d

close #86, add Database.hs

vvadimbakaev committed 5 years ago
Unverified
8a62c87919c774069d53b2547125ac819d53feee

add codeclimate config

vvadimbakaev committed 5 years ago
Unverified
177fc883f97344c03f4fd223f58155670080189f

add fork me on github link

vvadimbakaev committed 5 years ago
Unverified
e306ef05a0e51858cd4c50d4155bb8772efec260

update cloudfare CSP header

vvadimbakaev committed 5 years ago

README

The README file for this repository.

The rigth place to find rigth IT company.

License: AGPL v3 CircleCI StackShare

Prerequisites

You need to install the following software:

Haskell Setup

  1. If you haven't already, install Stack
    • On POSIX systems, this is usually curl -sSL https://get.haskellstack.org/ | sh
  2. Install the yesod command line tool: stack install yesod-bin --install-ghc
  3. Build libraries: stack build

If you have trouble, refer to the Yesod Quickstart guide for additional detail.

Hlint

stack install hlint

Hindent

stack install hindent

How to run

Expose MongoDB on localhost with default port 27017

Start a development server with:

stack exec -- yesod devel

As your code changes, your site will be automatically recompiled and redeployed to http://localhost:3000.

Tests

stack test --flag h-map:library-only --flag h-map:dev

(Because yesod devel passes the library-only and dev flags, matching those flags means you don't need to recompile between tests and development, and it disables optimization to speed up your test compile times).

Documentation

  • Read the Yesod Book online for free
  • Check Stackage for documentation on the packages in your LTS Haskell version, or search it using Hoogle. Tip: Your LTS version is in your stack.yaml file.
  • For local documentation, use:
    • stack haddock --open to generate Haddock documentation for your dependencies, and open that documentation in a browser
    • stack hoogle <function, module or type signature> to generate a Hoogle database and search for your query
  • The Yesod cookbook has sample code for various needs

Getting Help