├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml ├── vcs.xml └── volo.iml ├── LICENSE ├── README.md ├── flaskserver.py ├── kiwix_tools ├── kiwix-tools-linux-x86_64-3.7.0-2 │ ├── kiwix-manage │ ├── kiwix-search │ └── kiwix-serve ├── kiwix-tools-macos-arm64-3.7.0-2 │ ├── kiwix-manage │ ├── kiwix-search │ └── kiwix-serve └── kiwix-tools-win-i686-3.7.0-2 │ ├── kiwix-manage.exe │ ├── kiwix-search.exe │ └── kiwix-serve.exe ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── requirements.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── Sidebar.js ├── config.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js ├── start.bat └── start.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/volo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/.idea/volo.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/README.md -------------------------------------------------------------------------------- /flaskserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/flaskserver.py -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-linux-x86_64-3.7.0-2/kiwix-manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-linux-x86_64-3.7.0-2/kiwix-manage -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-linux-x86_64-3.7.0-2/kiwix-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-linux-x86_64-3.7.0-2/kiwix-search -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-linux-x86_64-3.7.0-2/kiwix-serve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-linux-x86_64-3.7.0-2/kiwix-serve -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-macos-arm64-3.7.0-2/kiwix-manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-macos-arm64-3.7.0-2/kiwix-manage -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-macos-arm64-3.7.0-2/kiwix-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-macos-arm64-3.7.0-2/kiwix-search -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-macos-arm64-3.7.0-2/kiwix-serve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-macos-arm64-3.7.0-2/kiwix-serve -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-win-i686-3.7.0-2/kiwix-manage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-win-i686-3.7.0-2/kiwix-manage.exe -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-win-i686-3.7.0-2/kiwix-search.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-win-i686-3.7.0-2/kiwix-search.exe -------------------------------------------------------------------------------- /kiwix_tools/kiwix-tools-win-i686-3.7.0-2/kiwix-serve.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/kiwix_tools/kiwix-tools-win-i686-3.7.0-2/kiwix-serve.exe -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/public/robots.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/Sidebar.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/config.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/start.bat -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdyTech99/volo/HEAD/start.sh --------------------------------------------------------------------------------