一键导入
mern-deploy
Deployment checklist and setup for MERN projects targeting Vercel, AWS, or Docker.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deployment checklist and setup for MERN projects targeting Vercel, AWS, or Docker.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | mern-deploy |
| description | Deployment checklist and setup for MERN projects targeting Vercel, AWS, or Docker. |
| argument-hint | [--target vercel|aws|docker] [--check-only] |
| allowed-tools | Bash, Write, Read, Glob, Grep |
Prepare a MERN project for production deployment with proper configuration, security hardening, and monitoring setup.
--target <platform> — Deployment target (default: vercel)
vercel — Vercel (recommended for Next.js)aws — AWS (Lambda + API Gateway or ECS)docker — Docker container (self-hosted)--check-only — Run pre-deployment checklist without creating files.env.exampleNEXTAUTH_SECRET is unique 32+ char stringNODE_ENV=production in productionmongodb+srv://0.0.0.0/0 for serverless)pnpm build.next/analyze if concerned)/api/healthvercel.json # Vercel configuration
serverless.yml # Serverless Framework config
or
Dockerfile # For ECS deployment
buildspec.yml # CodeBuild config
Dockerfile # Multi-stage build
docker-compose.yml # Local testing
.dockerignore # Ignore patterns
For platform-specific configurations, see reference/mern-deploy-reference.md
Scaffold a pnpm + Turborepo MERN monorepo with Next.js, tooling, tests, CI, and optional GitHub repo creation.
Configure GitHub repository security with branch protection, Dependabot, security scanning, and CI workflows. Integrates with mern-scaffold, nean-scaffold, and iOS projects.
Harden a Vercel deployment with security headers, CSP, bot protection, and deployment configuration
Add authentication to an iOS app with Sign in with Apple, biometrics, and Keychain storage.
Scaffold a new feature with View, ViewModel, and tests following ios-std conventions.
Review iOS code for compliance with standards, NFRs, and security policy.