Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 913 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 913 Bytes

wai-session-redis

GitHub Workflow Status Hackage

Provides Redis based session store for Network.Wai.Session
For example usage view example/Main.hs

Tests

To run tests wai-session-redis must have access to running redis instance.

Using docker and stack

docker run --name redis-session-tests -p 6379:6379 -d redis
stack test
docker rm -f redis-session-tests

Using nix

Nix takes care of running redis instance and testing wai-session-redis.

nix-build