At present we cannot use large (> 100 MB) databases, because github doesn't allow to store such files to git, and it forces to use https://git-lfs.github.com/ instead of. That's fine, but we cannot use Git LFS, because Github pages doesn't support embedding of LFS. So, we need to implement workaround.
Let's try the following solution:
split sqlite database to several files after creating of index.
Download all parts on web-frontend.
Combine the parts to one database, which will be used for queries.
At present we cannot use large (> 100 MB) databases, because github doesn't allow to store such files to git, and it forces to use https://git-lfs.github.com/ instead of. That's fine, but we cannot use
Git LFS
, becauseGithub pages
doesn't support embedding of LFS. So, we need to implement workaround.Let's try the following solution:
sqlite
database to several files after creating of index.