Here is what am trying to do:
We are building an application that has two forms, mobile and a desktop application for an inventory management system. Now, what we want is that the mobile application should be built with Flutter, but the backend should be a Django-based application.
The Django-based application is such that when you install the Flutter application, the Django backend - the Django is converted such that it can be embeded in the flutter app and it is being executed - such that the backend is within , the Flutter application. At the end the flutter should be installed on an android os
So, for example, when you install the Flutter application, it starts up the Django application, and when you close the Flutter application, it closes the Django backeend . Somehow, the Flutter application is containing the Django backend, and somehow the backend is not hosted separately.
This is because we don’t want to host the backend separately. Now, for the desktop application, we want it to be built with Django, and the frontend also with HTML and CSS, that means a full-stack Django single application, but converted to an executable, such that we can just with a single click or two clicks, we can install the application (same backend as on the fullter application)on any Windows laptop or desktop Windows desktop, and the application runs smoothly without usually configuring the backend separately and the frontend separately.
We just need one click, and then it’s gone - the entire application. Now, the system is supposed to have a centralized database system, where the Jungle, the desktop, and the mobile, that have their own backends, are synchronized with a central database system online, and they also have local databases for both the mobile application and the desktop application
any idea how feasible this is