algolia-deploy-integration

Featured

Deploy Algolia-powered apps to Vercel, Fly.io, and Cloud Run with proper API key management and InstantSearch frontend integration. Trigger: "deploy algolia", "algolia Vercel", "algolia production deploy", "algolia Cloud Run", "algolia Fly.io", "algolia InstantSearch".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Algolia Deploy Integration ## Overview Deploy Algolia-powered applications to production platforms with proper API key separation (Admin on backend, Search-Only on frontend) and InstantSearch widget integration. ## Prerequisites - Algolia App ID + Admin key (backend) + Search-Only key (frontend) - Platform CLI installed (vercel, fly, or gcloud) - `algoliasearch` v5 for backend, `react-instantsearch` or `instantsearch.js` for frontend ## Instructions ### Step 1: Backend API Key Configuration #### Vercel ```bash # Environment variables in Vercel vercel env add ALGOLIA_APP_ID production # Your Application ID vercel env add ALGOLIA_ADMIN_KEY production # Admin key (server-side only) vercel env add ALGOLIA_SEARCH_KEY production # Search-only key (can be public) # For client-side access (Next.js convention) vercel env add NEXT_PUBLIC_ALGOLIA_APP_ID production vercel env add NEXT_PUBLIC_ALGOLIA_SEARCH_KEY production ``` #### Fly.io ```bash fly secrets set \ ALGOLIA_APP_ID=YourApplicationID \ ALGOLIA_ADMIN_KEY=your_admin_key \ ALGOLIA_SEARCH_KEY=your_search_key ``` #### Google Cloud Run ```bash # Store in Secret Manager echo -n "your_admin_key" | gcloud secrets create algolia-admin-key --data-file=- echo -n "your_search_key" | gcloud secrets create algolia-search-key --data-file=- # Deploy with secrets mounted as env vars gcloud run deploy search-service \ --image gcr.io/$PROJECT_ID/search-service \ --set-secrets=ALGOLIA_ADMIN_KEY=algolia-admin-...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

DevOps & Infrastructure Featured

alchemy-deploy-integration

Deploy Alchemy-powered Web3 applications to Vercel, Cloud Run, and AWS. Use when deploying dApps with server-side Alchemy SDK access, configuring API key secrets, or setting up RPC proxy endpoints. Trigger: "deploy alchemy", "alchemy Vercel", "alchemy Cloud Run", "alchemy production deploy", "dApp deploy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

algolia-install-auth

Install and configure the Algolia JavaScript v5 client with proper API key management. Use when setting up a new Algolia integration, configuring Application ID and API keys, or initializing the algoliasearch client in a Node.js/TypeScript project. Trigger: "install algolia", "setup algolia", "algolia auth", "configure algolia keys".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-deploy-integration

Deploy Klaviyo integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying Klaviyo-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy klaviyo", "klaviyo Vercel", "klaviyo production deploy", "klaviyo Cloud Run", "klaviyo Fly.io".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

mistral-deploy-integration

Deploy Mistral AI integrations to Vercel, Docker, and Cloud Run platforms. Use when deploying Mistral AI-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy mistral", "mistral Vercel", "mistral production deploy", "mistral Cloud Run", "mistral Docker".

2,266 Updated today
jeremylongshore
AI & Automation Featured

algolia-ci-integration

Configure Algolia CI/CD: GitHub Actions for index validation, automated reindexing on deploy, and integration testing against real Algolia indices. Trigger: "algolia CI", "algolia GitHub Actions", "algolia automated tests", "CI algolia", "algolia deploy pipeline".

2,266 Updated today
jeremylongshore