Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A fast admin dashboard based on FastAPI and TortoiseORM with tabler UI, inspired by Django admin.

Light Bootstrap Dashboard is an admin dashboard template designed to be beautiful and simple.
fastapi-admin is an open-source admin dashboard for FastAPI applications, built on TortoiseORM and the tabler UI, that generates a web-based management interface from your database models.
fastapi-admin is a Python package that provides a ready-made admin dashboard for FastAPI applications, using TortoiseORM for database interaction and the tabler UI for the frontend. It is inspired by Django admin, meaning it auto-generates CRUD interfaces for your models. The project is maintained by fastapi-admin on GitHub, and the current version is distributed via PyPI with the command pip install fastapi-admin.
.env file with DATABASE_URL and REDIS_URL variables; the example uses MySQL and a local Redis./admin/init on a fresh instance creates the initial administrator account.After installing with pip install fastapi-admin, clone the repo, create a .env file with DATABASE_URL and REDIS_URL, then run docker-compose up -d --build. Visit http://localhost:8000/admin/init to create the first admin user, then log in at /admin/login.
Yes, the project is open source under the Apache-2.0 license, so it is free to use and modify. A separate pro version exists and has its own online demo, but no pricing details are published on the README.
Yes, Redis is listed as a requirement. The configuration expects a REDIS_URL in the .env file, and the docker-compose setup includes a Redis service.
The README example uses MySQL via DATABASE_URL=mysql://root:[email protected]:3306/fastapi-admin. Because the ORM is TortoiseORM, the actual database support follows what TortoiseORM supports, but the visible example is MySQL.
On a fresh installation, visit the /admin/init endpoint in your browser and follow the prompts to create the first admin account. The live demo uses username admin and password 123456.
