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',
}
}
}}}
Follow these instructions to install django.
TODO
TODO
TODO
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