Skip to content

Commit 31bebfc

Browse files
fix(integration): algolia-production -> algolia
1 parent e7dad88 commit 31bebfc

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ──────────────────────────────────────────────────────────────────────────
22
# All three variables are injected automatically into your Vercel project
33
# when you install the Algolia integration from the Vercel Marketplace:
4-
# https://vercel.com/marketplace/algolia-production
4+
# https://vercel.com/marketplace/algolia
55
#
66
# For local development, pull them from Vercel instead of filling this file:
77
# vercel link

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Algolia Search Starter
22

33
A minimal [Next.js](https://nextjs.org) starter showing how to use [Algolia](https://www.algolia.com)
4-
with the [Algolia integration on the Vercel Marketplace](https://vercel.com/marketplace/algolia-production).
4+
with the [Algolia integration on the Vercel Marketplace](https://vercel.com/marketplace/algolia).
55
Deploy it, seed the sample products, and you have a full search experience —
66
search-as-you-type, highlighting, keyboard navigation (<kbd>⌘K</kbd>) — powered by
77
[SiteSearch](https://sitesearch.algolia.com) components built on
@@ -17,7 +17,7 @@ Deploying this starter with the button below installs the Algolia integration on
1717
project. It provisions an Algolia app and injects the API keys as environment variables —
1818
no manual configuration needed.
1919

20-
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Falgolia%2Falgolia-search-starter%2F&project-name=algolia-search-starter&repository-name=algolia-search-starter&products=%5B%7B%22type%22%3A%22integration%22%2C%22integrationSlug%22%3A%22algolia-production%22%2C%22productSlug%22%3A%22application%22%2C%22protocol%22%3A%22storage%22%7D%5D)
20+
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Falgolia%2Falgolia-search-starter%2F&project-name=algolia-search-starter&repository-name=algolia-search-starter&products=%5B%7B%22type%22%3A%22integration%22%2C%22integrationSlug%22%3A%22algolia%22%2C%22productSlug%22%3A%22application%22%2C%22protocol%22%3A%22storage%22%7D%5D)
2121

2222
After the first deploy, seed the sample data once:
2323

@@ -65,7 +65,7 @@ Open [http://localhost:3000](http://localhost:3000) and hit <kbd>⌘K</kbd>.
6565
## Learn more
6666

6767
- [Algolia documentation](https://www.algolia.com/doc/)
68-
- [Algolia on the Vercel Marketplace](https://vercel.com/marketplace/algolia-production)
68+
- [Algolia on the Vercel Marketplace](https://vercel.com/marketplace/algolia)
6969
- [SiteSearch component registry](https://sitesearch.algolia.com)
7070
- [React InstantSearch](https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/react/)
7171

app/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const searchApiKey = process.env.NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY;
99
const INDEX_NAME = "starter_products";
1010
const REPO_URL = "https://github.com/algolia/algolia-vercel-starter";
1111
const DEPLOY_URL =
12-
"https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Falgolia%2Falgolia-vercel-starter&project-name=algolia-starter&repository-name=algolia-vercel-starter&stores=%5B%7B%22type%22%3A%22integration%22%2C%22integrationSlug%22%3A%22algolia-production%22%2C%22productSlug%22%3A%22application%22%7D%5D";
12+
"https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Falgolia%2Falgolia-vercel-starter&project-name=algolia-starter&repository-name=algolia-vercel-starter&stores=%5B%7B%22type%22%3A%22integration%22%2C%22integrationSlug%22%3A%22algolia%22%2C%22productSlug%22%3A%22application%22%7D%5D";
1313

1414
export default function Home() {
1515
const isConfigured = Boolean(appId && searchApiKey);
@@ -75,7 +75,7 @@ export default function Home() {
7575
<li>
7676
Install the{" "}
7777
<a
78-
href="https://vercel.com/marketplace/algolia-production"
78+
href="https://vercel.com/marketplace/algolia"
7979
className="font-medium text-indigo-600 hover:text-indigo-500 dark:text-indigo-400 dark:hover:text-indigo-300"
8080
>
8181
Algolia integration
@@ -166,7 +166,7 @@ export default function Home() {
166166
Algolia docs
167167
</a>
168168
<a
169-
href="https://vercel.com/marketplace/algolia-production"
169+
href="https://vercel.com/marketplace/algolia"
170170
className="hover:text-gray-900 dark:hover:text-gray-100"
171171
>
172172
Marketplace listing

0 commit comments

Comments
 (0)