* Add shell.nix that includes sqlite.
previous shell environment didn't include an application that was necessary for
developing the application. Whoops.
This new shell.nix lets students add their own development tools if they want
to try something out. `ghcid` for example.
* Overhaul: New techniques, new exercises.
Remove hspec-wai dependencies, add waargonaut.
The aeson dependency has been replaced with waargonaut, and the exercises have
been updated to match. Some exercises have been removed.
Add the use of `finally` as a demonstration and reminder that we should be
cleaning up things like connections when an app is done.
Explain the purpose of the `runDB` function so that implementation makes more
sense to students as an exercise.
Add exercise to generalise the error type that is used in the `AppM` transformer
that they implement. This flows onto a later exercise where they reuse this type
to simplify a function that is not part of the core application. This also
allows for an easier introduction of `ExceptT` as an exercise later in the
course when `AppM` is no longer usable.
Add a startup error constructor as making the students add it isn't informative
when compared to the rest of the exercise.
* Remove all duplicate tests. Rebuild Level03.
Level03 has been changed entirely to be centered on writing tests for student
code. The tests are then to be updated by the students as they progress through
the course. There are no duplicated tests and there is a bit more incentive for
students to get in and get their hands dirty with respect to testing their own
work.
Still not sure what to do with doctests just yet. More documentation is required
for that.
* Remove Level03 exe and modules.
* Feedback driven development
* Add tighter bounds for lens.
* Add bounds for old-locale and contravariant.
* Realign some imports.
* Rename 'AppM'' to 'AppM' and 'AppM' to 'App'.
* Clean up an utterly misleading and out of date comment regarding configuration
package choices. Revert to unremarkable statement about it being JSON.
* Remove redundant import of `Level02.Types` from `tests/Test.hs`.
* Add waargonaut to extra-deps in stack.yaml.
* Bump LTS in stack.yaml to 12.14.
* Fix typos.
* Improve wording, restructure some comments.
* Revert LTS bump, increase contravariant upper bound for GHC 8.6.1
* Try updated stack.yaml
* Update travis.yml:
Bump patch versions of GHC:
* 8.4.3 -> 8.4.4
* 8.6.1 -> 8.6.2
Drop Stack LTS:
6, 9, 10
Add Stack LTS:
11, 12
* Add fixes to help stack nightly builds on travis. Remove some comments in cabal file
* Remove LTS-11, add in-memory db notes to level04
* add workshop levels document for expansion
* Proofread changes.
* Try to use cached GHC downloads for stack on travis
* Remove install ghc flag from stack commands
* Last try to stop stack downloading its own GHC
* Revert stack travis changes. Attempt to pin appar version for 7.10.3.
* Drop support for GHC 7.10.3
* Restructure entire course into a single library with multiple executable definitions. Makes working through the course a bit easier with respect to sandboxes, nix shells, and stack caching. Should be a side benefit of giving editor tooling a bit of an easier time. Lowers switch time between course levels.
* Readme updates to suit new structure.
Add comment to cabal file.
* Syntax error in Travis yml file.
Not sure where yet.
* Applied some linting suggestions to travis file
* Fixed missing comments in travis yml, removed duplicate executable entry in the cabal file
* Added changelog file, vcs entry to cabal file
* Fixing travis file, WIP.
* Still trying
* Added cabal.project file
* Still trying (Travis)
* Moved var declaration to higher level in travis.yml file.
* Forgo the complexity of hvrs script and go low-tech.
* Remove Haddocks from stack build.
Add extra-deps because what was a working stack build is now failing for some
reason, despite having the same version bounds and using the same LTS as before.
* Added more deps to extra-deps to appease the stackbeast.
* Updated base README
* Readme tweaks, level 03 test updates
* Moved Level07 to Level05, bumped other levels accordingly.
* Moved 'Main' to 'Core'.
Updated READMEs, first pass.
Updated Cabal file.
Updated Tests to handle change of Main to Core.
* Proof read #3616
Lots of small fixes for file paths, wording, some additional exercises. Fixed up
the tests to be more consistent as they've been reordered a few times and mostly
left to rot.
Readmes updated where needed.
New exercise added to level07 for using the general `ExceptT` type.
* Fix up some tests and avoid any more dynamic linking errors, I think
* Fix up cabal config for doctests, missing packages and some exposed-modules
* Removed use of Semigroup in tests to avoid CPP in cabal file for including semigroups package. Added bounds to base dependency for doctests test-suite