We use this app for serving customers recommendations of topics they might like.
For complete instructions, see docs/development.md.
TL;DR:
docker-compose build
docker-compose up
- Visit http://localhost:8000
To list all slates:
query list_slates{
listSlates {
id
}
}
To get self-improvement slates with recommendations:
query test_query {
getSlateLineup(slateLineupId: "63f24663-0e80-4c08-82aa-3fb0e06c4979") {
experimentId
slates {
displayName
recommendations {
itemId
}
}
}
}