Maybe a dumb question if there is an obvious answer, but is there a way to open up your IHP project in something like ghci to be able to, e.g., run queries from the database and such interactively through Haskell? Obviously you could do this through SQL itself but IHP/Haskell is nicer for basic queries.
Asked
Active
Viewed 46 times
1 Answers
3
You should be able to open ghci with:
nix-shell
ghci

amitaibu
- 1,026
- 1
- 7
- 23
-
1`make console` also gets you into ghci and is a bit faster to load :) – Jannis Jorre Jan 24 '22 at 07:21