Skip to content

algolia/jekyll-algolia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ad7db78 · Mar 23, 2023
Feb 14, 2018
Mar 23, 2023
Mar 23, 2023
May 31, 2021
May 7, 2018
Oct 21, 2019
Jul 16, 2015
Sep 15, 2019
Jul 2, 2015
Nov 28, 2017
Sep 15, 2019
Mar 23, 2023
Nov 7, 2017
Apr 26, 2018
Mar 12, 2018
Dec 12, 2017
Mar 22, 2018
Mar 23, 2023
Mar 23, 2023
Sep 18, 2019

Repository files navigation

DEPRECATED

This plugin is deprecated and no longer maintained by Algolia.

As of November 2022, it still works on Jekyll 3. Issues are still open, as a place to discuss, but Pull Requests will be closed.

If you're interested in becoming a maintainer and giving it a second life, feel free to fork it (or get in touch with @Algolia to become an official maintainer).

Below is the old README, for archiving purposes:


Jekyll Algolia Plugin

No Maintenance Intended gem version ruby jekyll build master build develop coverage master

Add fast and relevant search to your Jekyll site.

Usage

$ bundle exec jekyll algolia

This will push the content of your Jekyll website to your Algolia index.

Documentation

Full documentation can be found on https://community.algolia.com/jekyll-algolia/

Installation

The plugin requires at least Jekyll 3.6.0 and Ruby 2.3.0.

First, add the jekyll-algolia gem to your Gemfile, in the :jekyll_plugins section.

# Gemfile

group :jekyll_plugins do
  gem 'jekyll-algolia', '~> 1.0'
end

Once this is done, download all dependencies with bundle install.

Basic configuration

You need to provide certain Algolia credentials for this plugin to index your site.

If you don't yet have an Algolia account, we suggest that you open a free Community plan here. You can find more information about the Algolia plans in our FAQ.

Once signed in, you should get your application ID from your dashboard and define it inside your _config.yml file like this:

# _config.yml

algolia:
  application_id: 'your_application_id'

Run it

Once your application ID is setup, you can run the indexing by running the following command:

ALGOLIA_API_KEY='your_admin_api_key' bundle exec jekyll algolia

Note that ALGOLIA_API_KEY should be set to your admin API key.

More about the Community plan

The Algolia Community plan lets you host up to 10k records and perform up to 100k add/edit/delete operations per month (search operations are free). The plan is entirely free, with no time limit.

What we ask in exchange is that you display a "Search by Algolia" logo next to your search results. Our InstantSearch libraries have a boolean option to toggle that on an off. If you want more flexibility, you can find all versions of our logo here.

If you need more information about the other Algolia plans, you can check our FAQ.

Thanks

Thanks to Anatoliy Yastreb for a great tutorial on creating Jekyll plugins.