gitextract_8w7z8v8t/ ├── .gitignore ├── LICENSE ├── README.md ├── application/ │ ├── dbinit.php │ ├── djvu.php │ ├── epub.php │ ├── functions.php │ ├── init.php │ ├── modules/ │ │ ├── 404/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ ├── author/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ ├── authors/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ ├── book/ │ │ │ ├── djvu.php │ │ │ ├── docx.php │ │ │ ├── epub.php │ │ │ ├── fb.php │ │ │ ├── html.php │ │ │ ├── index.php │ │ │ ├── mobi.php │ │ │ ├── module.conf │ │ │ ├── pdf.php │ │ │ ├── rtf.php │ │ │ └── txt.php │ │ ├── fav/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ ├── favlist/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ ├── genres/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ ├── opds/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ ├── primary/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ ├── series/ │ │ │ ├── index.php │ │ │ └── module.conf │ │ └── service/ │ │ ├── index.php │ │ └── module.conf │ ├── opds/ │ │ ├── author.php │ │ ├── authorsindex.php │ │ ├── fav.php │ │ ├── favs.php │ │ ├── genres.php │ │ ├── index.php │ │ ├── list.php │ │ ├── listgenres.php │ │ ├── main.php │ │ ├── search.php │ │ ├── search_author.php │ │ ├── search_book.php │ │ └── sequencesindex.php │ ├── public/ │ │ ├── bootstrap/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.rtl.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── bootstrap.js │ │ ├── css/ │ │ │ ├── css.css │ │ │ └── style.css │ │ ├── extract_author.php │ │ ├── extract_cover.php │ │ ├── extract_usr.php │ │ ├── fb2.php │ │ ├── index.php │ │ ├── js/ │ │ │ ├── EMFJS.bundle.js │ │ │ ├── RTFJS.bundle.js │ │ │ ├── WMFJS.bundle.js │ │ │ ├── djvu.js │ │ │ ├── djvu_viewer.js │ │ │ ├── pdf.js │ │ │ └── pdf.worker.js │ │ ├── opds-opensearch.xml │ │ ├── opds-opensearch.xml.php │ │ ├── save_position.php │ │ └── usr.php │ ├── renderer.php │ ├── tools/ │ │ ├── app_db_converter.py │ │ ├── app_import_sql.sh │ │ ├── app_reindex.sh │ │ ├── app_topg │ │ ├── app_update_zip_list.php │ │ ├── cleanup_db.sql │ │ ├── dbinit.sh │ │ ├── external_services_config/ │ │ │ ├── README.md │ │ │ ├── docker-compose.yml │ │ │ ├── external_postgres_init.sql │ │ │ ├── flibusta.conf │ │ │ └── flibusta_entrypoint.sh │ │ └── update_vectors.sql │ └── webroot.php ├── blob/ │ └── 1 ├── docker-compose.yml ├── getcovers.sh ├── getsql.sh ├── phpdocker/ │ ├── nginx/ │ │ └── nginx.conf │ ├── pg/ │ │ ├── Dockerfile │ │ └── init_db.sql │ └── php-fpm/ │ ├── Dockerfile │ ├── php-fpm.conf │ └── php-ini-overrides.ini ├── secrets/ │ ├── flibusta_pwd.txt │ └── postgres_admin_pwd.txt └── update_daily.sh