mindtickle-deploy-integration

Featured

Deploy Integration for MindTickle. Trigger: "mindtickle deploy integration".

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

# MindTickle Deploy Integration ## Overview Deploy a containerized MindTickle integration service that manages sales readiness courses, tracks learner progress across quizzes and certifications, and synchronizes enablement data through the MindTickle API. This skill covers Docker multi-stage builds for the MindTickle SDK, API token configuration, health checks that verify course catalog access, and rolling deployments with zero disruption to active training sessions and learner progress tracking. ## Prerequisites - Docker 24+ and Docker Compose v2 installed - Valid `MINDTICKLE_API_KEY` from the MindTickle admin console (Settings > API) - Node.js 20 LTS (build stage) - Network access to `api.mindtickle.com` on port 443 - Target deployment host with at least 256MB available memory ## Docker Configuration ```dockerfile FROM node:20-slim AS builder WORKDIR /build COPY package*.json tsconfig.json ./ RUN npm ci COPY src/ ./src/ RUN npm run build FROM node:20-slim RUN groupadd -r mindtickle && useradd -r -g mindtickle -m appuser WORKDIR /app COPY --from=builder /build/dist ./dist/ COPY --from=builder /build/node_modules ./node_modules/ COPY package*.json ./ RUN npm prune --production USER appuser EXPOSE 3000 HEALTHCHECK --interval=30s --timeout=5s --retries=3 \ CMD curl -f http://localhost:3000/health || exit 1 CMD ["node", "dist/index.js"] ``` ## Environment Variables ```bash MINDTICKLE_API_KEY="mt_xxxxxxxxxxxxxxxx" # API key from admin console MINDTICKLE_BASE_URL...

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