About the tutorial
This tutorial explains how to use KBIES to develop and deploy integrated enterprise solutions for a business.
This tutorial is for learners at level of University Year 3
KBIES is implemented in python-Django web framework and MySQL database at its backend. As such installation of a recent version of Python is the first step. The way to get Python and MySQL installed really depends on what computing platform will be used for development and/or deployment. Because both Python and MySQL are platform-independent, platform for development can be different. Because development can often be done in friendly desktop environment, Windows platform is often the choice for development. To run a production server, Linux such as Ubuntu Linux is often used for its sound security and server features.
How can you deploy the entire system or updates from your development server to your production server? it has been proved that the easiest way is to use a tool called rsync . It is efficient and effective because it will only will only update the changes to the system on the target machine, such as your production server.
An organization is often structured in a hierarchy, and each node in the hierarcy is assigned with specific functions, such as functions of human resource, finance, and facility department. We call the entire organization main zone, and the nodes within the organization, under the main zone, sub-zones.
Employees working in each specific zone play specific roles assigned, and each role is played by carrying out specific actions. ZRBAC - Zoned Role-Based Access Control is based on the above analysis, can be used for system design, development and deployment in the following steps:
An app is a computer system designed for some specific purposes. For example, a research department within a university will need a system to manage fundings, a system to manage research projects, a system to manage publication. The university will need a system for course development, and a system for course delivery.
It is quite often that one system can have sub systems, forming a hierarchy of systems. That's how a computer system is normally designed and developed. The technique is called divide-and-conquer, modular programming at high-level, or structured-programming at coding-level.
An exampel of such a hierarchy is a course development system, which will have subsystems for exam development, assignment development, quiz development, learning content development, and other subsystems needed.
Regardless of how big or small a system is, it serves its purposes by providing a suite of operations for intended users to perform. In computer programs, these operations are implemented with functions or methods. So, our next important step is