rsnext/examples/with-elasticsearch
2024-05-08 21:47:14 +02:00
..
lib chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
pages chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
public examples: migrate with-elasticsearch to TypeScript (#44842) 2023-06-15 16:26:09 +00:00
styles chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
.env.local.example [examples] Add ElasticSearch example (#28043) 2021-08-24 16:28:11 +00:00
.gitignore Add .yarn/install-state.gz to .gitignore (#56637) 2023-10-18 16:34:48 +00:00
package.json examples: migrate with-elasticsearch to TypeScript (#44842) 2023-06-15 16:26:09 +00:00
README.md update example Deploy button URLs (#48842) 2023-04-26 13:31:44 -04:00
tsconfig.json examples: migrate with-elasticsearch to TypeScript (#44842) 2023-06-15 16:26:09 +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
yarn create next-app --example with-elasticsearch with-elasticsearch-app
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