globalbibletools / platform

https://globalbibletools.com
6 stars 1 forks source link

LanguageProgress is not populated in a fresh dev environment #16

Open JoelNiemela opened 1 week ago

JoelNiemela commented 1 week ago

When setting up my local dev environment, I initially got this error:

materialized view "LanguageProgress" has not been populated"

This can be resolved by running this command in PostgreSQL:

REFRESH MATERIALIZED VIEW "LanguageProgress";

Ideally, this shouldn't be needed at all (I feel like some setup script somewhere should take care of this), but if nothing else, a note to this effect could be added to the README.md until a proper solution can be made.