rsnext/examples/with-elasticsearch
2022-07-26 20:08:40 -05:00
..
lib [examples] Add ElasticSearch example (#28043) 2021-08-24 16:28:11 +00:00
pages Fixes #33153: Updating cross-references from master to main + canary (#33198) 2022-01-12 02:55:35 +01:00
public [examples] Add ElasticSearch example (#28043) 2021-08-24 16:28:11 +00:00
styles [examples] Add ElasticSearch example (#28043) 2021-08-24 16:28:11 +00:00
.env.local.example [examples] Add ElasticSearch example (#28043) 2021-08-24 16:28:11 +00:00
.gitignore Update default gitignore templates (#39051) 2022-07-26 20:08:40 -05:00
package.json [Examples] Updating with-elasticsearch to latest Elasticsearch lib version (#36063) 2022-04-11 14:52:17 +00:00
README.md Update pnpm create next-app for latest pnpm 6 and 7 (#37254) 2022-05-27 21:21:40 +00:00

Example app using Elasticsearch

Elasticsearch is a distributed, RESTful search and analytics engine. As the heart of the Elastic Stack, it centrally stores your data for lightning fast search, finetuned relevancy, and powerful analytics that scale with ease. This example will show you how to connect to and use Elasticsearch as your search backend for your Next.js app.

If you want to learn more about Elasticsearch, visit the following pages:

Deploy your own

Once you have access to the environment variables you'll need, deploy the example using Vercel:

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-elasticsearch with-elasticsearch-app
# or
yarn create next-app --example with-elasticsearch with-elasticsearch-app
# or
pnpm create next-app --example with-elasticsearch with-elasticsearch-app

Configuration

Set up Elasticsearch

Set up a Elasticsearch either locally or with Elastic Cloud for free.

Set up environment variables

Copy the env.local.example file in this directory to .env.local (which will be ignored by Git):

cp .env.local.example .env.local

Set each variable on .env.local:

  • ESS_CLOUD_ID - URL for the Elasticsearch instance, if you are using Elastic Cloud you can find this in the Elastic Cloud console.
  • ESS_CLOUD_USERNAME - The username for the Elasticsearch instance you have created, if you are using default user it would be elastic.
  • ESS_CLOUD_PASSWORD - Password for the Elasticsearch instance

Run Next.js in development mode

npm install
npm run dev

# or

yarn install
yarn dev

Your app should be up and running on http://localhost:3000! If it doesn't work, post on GitHub discussions.

Please ensure that you have configured the env variables in the .env.local, if not you will see the message "You are not connected to Elasticsearch!" in the main page.

If you see that you are connected, you can refer to the Elasticsearch NodeJS language client docs for further instructions on querying Elasticsearch.

Deploy on Vercel

You can deploy this app to the cloud with Vercel (Documentation).

Deploy Your Local Project

To deploy your local project to Vercel, push it to GitHub/GitLab/Bitbucket and import to Vercel.

Important: When you import your project on Vercel, make sure to click on Environment Variables and set them to match your .env.local file.

Deploy from Our Template

Alternatively, you can deploy using our template by clicking on the Deploy button below.

Deploy with Vercel