You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first time the server is started, it takes a long time to load (see #78), and the longest-running task is the database migration. When the setup was run from the command line, at least the user saw that something was happening, but now it just seems like it's hanging.
If we can bundle a pre-migrated (but empty) database in (like we do in the Android app), this should cut down the load time very significantly. Steps to create such a database:
Delete any existing database
Run bin/kalite manage syncdb and then bin/kalite manage migrate --merge
Do not run setup, or start the server (as that will start adding data)
The text was updated successfully, but these errors were encountered:
Now done in the KA Lite. See learningequality/ka-lite#4656. Empty db included if it exists, which it does if you build a distributable using our handy-dandy makefile.
Just to clarify: This won't happen until 0.16, right? At least, that's how it is for the .debs where it's the ka-lite source dist that's responsible for this....
The first time the server is started, it takes a long time to load (see #78), and the longest-running task is the database migration. When the setup was run from the command line, at least the user saw that something was happening, but now it just seems like it's hanging.
If we can bundle a pre-migrated (but empty) database in (like we do in the Android app), this should cut down the load time very significantly. Steps to create such a database:
bin/kalite manage syncdb
and thenbin/kalite manage migrate --merge
setup
, or start the server (as that will start adding data)The text was updated successfully, but these errors were encountered: