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.
When setting up my local dev environment, I initially got this error:
This can be resolved by running this command in PostgreSQL:
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.