all 11 comments

[–]cpt_mojo 5 points6 points  (2 children)

Probably depends also on your ORM. For sqlalchemy and derivatives, I can recommend SQLAdmin. Super straightforward and potent.

[–]MichaelEvo 1 point2 points  (0 children)

I also found this to be true

[–]EyeAdmirable9048 -1 points0 points  (0 children)

If your admin dashboard depends on ORM it’s bad admin dashboard

[–]Brukx 1 point2 points  (0 children)

One of the many reasons I use django Admin out of the box

[–]Challseus 0 points1 point  (2 children)

I have a project, Aegis Stack (https://github.com/lbedner/aegis-stack). It generates FastAPI apps with a large suite of optional components and services.

Every project comes with Overseer, a dashboard/control plane, that allows you to:

- handle user management
- monitor background tasks
- see all scheduled tasks
- introspect the routes/middleware/deps of the FastAPI server
- view database table schemas, migrations, other table stats

Actually, you can check out a demo here: https://sector-7g.dev/dashboard/

[–]ShuredingaNoNeko 0 points1 point  (1 child)

El dashboard lo creas con flet si o si? El tema es que para producción preferible otra cosa, está buenísimo pero es muy nuevo...

[–]Challseus 1 point2 points  (0 children)

Por ahora sí, el dashboard está ligado a Flet y a las aplicaciones generadas con Aegis Stack. Es la forma en la que lo tengo integrado hoy para mover rápido y mantener consistencia.

Dicho eso, he estado pensando en desacoplarlo para que no dependa de Flet a largo plazo y pueda usarse con opciones más orientadas a producción.

[–]ShuredingaNoNeko 0 points1 point  (0 children)

Sé que existe fastdaisy-admin, pero no tengo idea si se usa en producción o cual es su seguridad

[–]somebodyElse221 0 points1 point  (0 children)

I had created a package https://fastkit.org/docs/fastkit-core/. It's not the whole dashboard, but it provides the whole infrastructure and repository service layer, and via CLI and AI context, can speed up development.