Getting Started
This documentation outlines the steps necessary to deploy and set up the Ed-Fi Admin App. The Ed-Fi Admin App is a web-based administrative platform designed to manage Ed-Fi API deployments across multiple environments and tenants.
Audience
This documentation is for administrators and DevOps personnel who will be installing the Admin App.
Overview
The Ed-Fi Admin App is a user interface for managing Ed-Fi Technology Suite deployments. It consists of:
- Web Application: React-based single-page application (SPA)
- Backend API: Node.js/NestJS application
- Database: PostgreSQL or SQL Server database for application data
- Authentication: OpenID Connect (OIDC) integration (typically Keycloak)
Required Components
- PostgreSQL or SQL Server Database (Required) — an empty database created
for the Admin App (the examples use the name
sbaa) - OIDC Provider (Required) - Keycloak or similar see
- Reverse Proxy (Recommended for production) - Nginx, IIS, or similar
- Provides a single public entry point for the Web Application and API (this avoids cross-origin/CORS between the two sites), plus caching, load balancing, and a place to enforce edge security (for example, a web application firewall).
- Not required to obtain HTTPS: each installation path terminates TLS itself. The Windows install scripts deploy the API and Web Application as two IIS sites directly (no front-facing proxy) with TLS and enforcing security headers, and the app is architecturally optional behind a proxy by design, honoring
X-Forwarded-*headers when used.
This application runs with any Open ID Connect provider. Keycloak is the only fully supported provider in this release; Microsoft Entra ID and Google Workspace have been tested and gain full support in Admin App v4.1.
Optional Components
- Yopass (Optional) - For sharing encrypted secrets
- Memcached (Optional) - Required only if using Yopass
Prerequisites
System Requirements
- Operating System: Windows Server 2019+, Linux (Ubuntu 20.04+, RHEL 8+), or similar
- Memory: Minimum 4GB RAM, Recommended 8GB+
- Storage: Minimum 10GB free space
- Network: HTTPS capability (SSL/TLS certificates)
Software Dependencies
- Node.js: Version 22.0.0 or higher
- SSL/TLS Certificates: For HTTPS endpoints
Ed-Fi Services
- Ed-Fi ODS/API and ODS Admin API: Installed and reachable — the Admin App performs all credential and configuration management by calling the Admin API.
- Admin API first-time configuration completed: When an environment is
connected, the Admin App registers its own client credentials at the Admin
API's
POST /connect/registerendpoint, which requiresAuthentication:AllowRegistration=truein the Admin API'sappsettings.json(falseby default). Complete Create the First API Client and keep registration enabled while connecting environments (it can be disabled again afterwards).
Choose an installation path
The Ed-Fi Admin App can be installed in one of three alternative ways. These are independent paths, not sequential steps — pick the one that matches your target environment and follow that page from start to finish.
| Path | What it does |
|---|---|
| Docker Compose Installation | Runs the Admin App and its dependencies as containers, on-premises or in the Cloud. |
| Windows IIS Installation | Hosts the backend API and Web Application on Windows Server using Internet Information Services (IIS). |
| Unix-like Systems Installation | Hosts the backend API with systemd and serves the Web Application with Nginx on a Linux or other Unix-like server. |
You only need to complete one of the paths above — each one installs and configures the Admin App. The Configuring Ed-Fi Admin App page is a reference for the available configuration options, and it is worth reviewing Security Considerations before going to production.