www.jannah.io
A Comprehensive Presentation on Jannah Middleware Application Part 3
Video Highlights
All the Jannah models have a corresponding database table to store state data.
Essentially a Django model is a high-level description of a database table.
We are using PostgresDB to store data for this demo.
I perform various SQL queries to show model stored data in the Jannah database.
select * from jannah_site_site;
select * from jannah_site_boot;
select * from jannah_site_network;
select * from jannah_site_storage;
select * from jannah_site_compute;
select * from jannah_site_ux;
select * from jannah_site_feedback;
select * from jannah_site_workflow;
Each model also has an admin interface. The admin interfaces will be showcased in the next video segment.