An interactive, step-by-step wizard to configure GitHub Enterprise Managed Users (EMU) with SSO, SCIM provisioning, GitHub Copilot, and GitHub Advanced Security.
🌐 Live Demo: https://congiuluc.github.io/github-emu-configuration-guide/
Setting up GitHub Enterprise Managed Users involves multiple steps across identity providers, SSO configuration, SCIM provisioning, and optional features like Copilot and Advanced Security. This guide provides a structured, interactive walkthrough that adapts to your specific setup choices.
The wizard generates a tailored configuration guide based on your selections, with detailed substeps, verification checkpoints, official documentation links, and contextual tips and warnings.
- Adaptive Wizard — The guide dynamically adjusts steps based on your configuration choices
- Two Enterprise Modes
- With Data Residency — For enterprises on
GHE.comwith region-specific data storage - Standard — For enterprises on
github.com
- With Data Residency — For enterprises on
- Identity Provider Support
- Microsoft Entra ID (SAML & OIDC)
- Okta (SAML)
- Configurable Modules
- SSO & SCIM provisioning (always included)
- GitHub Copilot enablement, policies, and seat assignment
- Organization & repository management with enterprise policies
- GitHub Advanced Security (code scanning, secret scanning, Dependabot)
- Progress Tracking — Checkbox-based progress per substep with visual completion indicators
- Inline Documentation — Direct links to official GitHub documentation for every step
- Enterprise Name Substitution — Enter your enterprise name and all URLs and examples update automatically
- Copyable URLs — One-click copy for configuration URLs relevant to your enterprise
- Responsive Layout — Three-panel layout with step navigation sidebar, main content, and contextual links
- React 19
- TypeScript 5.9
- Vite 8
- React Router 7
- Node.js 18 or later
- npm (included with Node.js)
git clone https://github.com/congiuluc/github-emu-configuration-guide.git
cd github-emu-configuration-guide
npm installnpm run devOpens the app at http://localhost:5173/.
npm run buildProduces a production build in the dist/ folder.
npm run preview- Open the app and select your Identity Provider (Entra ID or Okta) and SSO Protocol (SAML or OIDC)
- Toggle optional modules: Orgs & Policies, GitHub Copilot, GitHub Advanced Security
- Choose your enterprise type: With Data Residency or Standard
- Follow the step-by-step guide — each step includes:
- Detailed actions with substeps
- Verification checkpoints to confirm completion
- Links to official GitHub documentation
- Warnings and tips for common pitfalls
- Track your progress with the built-in checklist
├── index.html # Entry point
├── package.json
├── tsconfig.json
├── vite.config.ts
├── public/ # Static assets
│ ├── favicon.svg
│ └── icons.svg
└── src/
├── App.tsx # Main app with routing
├── main.tsx # React entry point
├── wizardData.ts # All wizard steps, substeps, and configuration logic
├── index.css # Global styles
├── style.css # Component styles
├── components/
│ ├── Landing.tsx # Landing page with configuration options
│ ├── SidebarLeft.tsx # Step navigation sidebar
│ ├── SidebarRight.tsx# Contextual links and resources sidebar
│ ├── StepContent.tsx # Main step content renderer
│ ├── CopyableUrl.tsx # URL display with copy-to-clipboard
│ └── Icons.tsx # SVG icon components
└── utils/
└── renderText.tsx # Text rendering utilities
Contributions are welcome! If you find inaccuracies in the guide steps or want to add support for additional identity providers:
- Fork the repository
- Create a feature branch (
git checkout -b feature/your-feature) - Commit your changes (
git commit -m 'Add your feature') - Push to the branch (
git push origin feature/your-feature) - Open a Pull Request
This project is provided as-is for educational and configuration guidance purposes.