Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gma/nesta-search
A search plugin for Nesta CMS
https://github.com/gma/nesta-search
nesta plugin
Last synced: 28 days ago
JSON representation
A search plugin for Nesta CMS
- Host: GitHub
- URL: https://github.com/gma/nesta-search
- Owner: gma
- Created: 2010-11-12T17:45:24.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2010-11-12T17:46:08.000Z (about 14 years ago)
- Last Synced: 2023-04-10T08:57:32.715Z (over 1 year ago)
- Topics: nesta, plugin
- Language: Ruby
- Homepage:
- Size: 81.1 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
README
======nesta-search is a plugin for the Nesta CMS for automatically linking to
other related content on your site. It uses the [Ferret][1] full text
search engine to find content on your site that is related to the
current page.Full text search (so you can add a search box to your site) is planned.
Installation
------------To install it as a gem add nesta-search to the `Gemfile` in your Nesta
project, and then re-run `bundle`:$ echo "gem 'nesta-search', '0.0.1'" >> Gemfile
$ bundleIf you'd rather install the plugin locally (which is useful if you want
to modify the code a bit):$ mkdir -p plugins
$ cd plugins
$ git clone https://github.com/gma/nesta-search.git
$ grep '^gem' nesta-search/Gemfile >> ../Gemfile
$ cd .. && bundle