IBM / django-ibmi

Django adapter for IBM i
Apache License 2.0
3 stars 5 forks source link
django-adapter django-ibmi

GitHub Actions status | sdras/awesome-actions

Django Adapter for IBM i

IBM i support for the Django application framework.

django-ibmi enables access to Db2 for IBM i from Django applications.

The adapter has been developed and is supported by IBM.

Please note that this project is still in active development and is not ready for use. :rotating_light:

 * Create a new Django project by executing "django-admin.py startproject myproj".
 * Now go to this newly create directory, and edit settings.py file to
 access Db2 for i.
 * The steps go as follows:
  1. In shell or cmd line run:
        django-admin.py startproject myproj
  2. Edit settings.py file
     * The settings.py will be like (after adding Db2 properties):
       {{{
       DATABASES = {
          'default': {
             'ENGINE'     : 'django-ibmi',
             'NAME'       : 'ibmi-sysname',
             'USER'       : 'uid',
             'PASSWORD'   : 'pwd',
          }
       }
       }}}

Prerequisites for Django on Python

Installation

1. Install Django

Follow these instructions to install django.

2. Install IBM i Django adapter (django-ibmi)

TODO

Documentation

TODO

Tested Operating Systems

TODO

Database Transactions

Known Limitations of django-ibmi adapter

Contributing to the django-ibmi python project

Please read the contribution guidelines

The developer sign-off should include the reference to the DCO in remarks(example below): DCO 1.1 Signed-off-by: Random J Developer random@developer.org