1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-26 06:38:40 +03:00
applied-fp-course/level01
2018-01-10 17:09:43 +10:00
..
bin Added -fwarn-missing-import-lists to GHC options. Fixed resulting errors 2017-09-12 13:28:27 +10:00
src/FirstApp Add imports to level01/FirstApp/Main. Remove an undefined from Test.hs in level04. Update readme for cabal install instructions. Fixes #1 2018-01-10 17:09:43 +10:00
changelog.md change changelog files to lowercase 2017-09-01 11:17:26 +10:00
default.nix Overhauled nix file setup to be more like the other QFPL projects. 2017-09-18 10:14:29 +10:00
level01.cabal Fix up Cabal file setting for exe. 2017-10-17 10:34:28 +10:00
level01.nix Overhauled nix file setup to be more like the other QFPL projects. 2017-09-18 10:14:29 +10:00
LICENCE update copyright notice 2017-09-12 11:51:26 +10:00
README.md Wording updates 2017-09-05 11:34:56 +10:00
Setup.hs Added two stages. 2017-08-09 13:06:21 +10:00

Level 01

The purpose of this exercise to whet our appetite a bit by spinning up an ultra basic web app. The focus will be on reading the Hackage documentation for the Wai framework. Consult the src/FirstApp/Main.hs to see the parts that are missing and what we need from the Wai package to make our "Hello, World!" application run.

Our "application" will respond to ALL incoming requests with a 200 status code response and the message "Hello, World!".