├── Gemfile ├── Gemfile.lock ├── Procfile ├── README ├── app ├── app.hs └── run /Gemfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ./app +RTS -N4 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwotton/heroku_haskell_demo/HEAD/README -------------------------------------------------------------------------------- /app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwotton/heroku_haskell_demo/HEAD/app -------------------------------------------------------------------------------- /app.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwotton/heroku_haskell_demo/HEAD/app.hs -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | ./app 3 | --------------------------------------------------------------------------------