πŸ” Core of the full-text search framework for Nextcloud
ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ ΠΊ Ρ„Π°ΠΉΠ»Ρƒ
Nextcloud bot fbd6d9179f
[tx-robot] updated from transifex
2017-05-12 00:14:44 +00:00
appinfo 1.0.8 2017-05-02 10:17:38 -01:00
config switch to FST 2016-11-10 22:41:22 -01:00
css Better browser support for suggestion-css-colors 2017-02-16 19:58:36 +01:00
img local 2016-10-13 10:25:44 -01:00
js #128 - Option to enable/disable Trash index 2017-02-06 09:47:42 -01:00
l10n [tx-robot] updated from transifex 2017-05-12 00:14:44 +00:00
lib bugfixes 2017-05-02 09:00:48 -01:00
screenshots wiki shot 2016-12-12 16:54:41 -01:00
templates #128 - Option to enable/disable Trash index 2017-02-06 09:47:42 -01:00
tests 0.3.1 2016-09-14 14:21:36 -01:00
.buildpath First alpha release 2016-08-31 02:02:30 +02:00
.gitignore 1.0.6 2017-02-11 19:05:48 -01:00
.travis.yml First alpha release 2016-08-31 02:02:30 +02:00
AUTHORS.md First alpha release 2016-08-31 02:02:30 +02:00
CHANGELOG.md 1.0.3 2016-12-29 20:12:44 -01:00
COPYING First alpha release 2016-08-31 02:02:30 +02:00
LICENSE Initial commit 2016-08-26 11:17:13 +02:00
Makefile First alpha release 2016-08-31 02:02:30 +02:00
README.md Had link/text around the wrong way 2017-05-09 01:45:03 +08:00
composer.json new ver 2016-11-18 21:51:00 -01:00
composer.lock update 2017-02-07 07:28:06 -01:00
phpunit.integration.xml First alpha release 2016-08-31 02:02:30 +02:00
phpunit.xml First alpha release 2016-08-31 02:02:30 +02:00
test.jpg test 2016-10-11 08:55:29 -01:00
test.pdf test 2016-10-11 08:55:29 -01:00
test.tif test 2016-10-11 08:55:29 -01:00

README.md

Nextant

 Navigate through your cloud using Solr

Nextant performs fast and concise Full-Text Search within:

  • your own files,
  • shared files,
  • federated cloud shares,
  • external storage,
  • server-side encrypted storage,
  • your bookmarks.

Recognized file format:

  • plain text,
  • rtf,
  • pdf,
  • jpeg & tiff (will requiert Tesseract)
  • html,
  • openoffice,
  • microsoft office,

Installation

Scripted installation (Ubuntu)

The developers of the Nextcloud VM has made a script that you can use. Please note that you must change the variables in the script to suit your config before you run it.

To get the script, please type the folloing command: wget https://github.com/nextcloud/vm/blob/master/apps/nextant.sh and then run the script with sudo bash nextant.sh.

Please report any issues regarding the script in the Nextcloud VM repo.

Building the app

The app can be built by using the provided Makefile by running:

make

This requires the following things to be present:

  • make
  • which
  • tar: for building the archive
  • curl: used if phpunit and composer are not installed to fetch them from the web
  • npm: for building and testing everything JS, only required if a package.json is placed inside the js/ folder

The make command will install or update Composer dependencies if a composer.json is present and also npm run build if a package.json is present in the js/ folder. The npm build script should use local paths for build systems and package managers, so people that simply want to build the app won't need to install npm libraries globally, e.g.:

package.json:

"scripts": {
    "test": "node node_modules/gulp-cli/bin/gulp.js karma",
    "prebuild": "npm install && node_modules/bower/bin/bower install && node_modules/bower/bin/bower update",
    "build": "node node_modules/gulp-cli/bin/gulp.js"
}