/django-app

A base application with Django which can be extended further

Primary LanguagePythonMIT LicenseMIT

django-app

A base application with Django which can be extended further

IDE used

Pycharm

Database

  • SQLite
  • PGSql
    • Psycopg is the most popular PostgreSQL database adapter for the Python programming language.

    • pip install psycopg2

    • pip install psycopg2-binary

    • Configuration for Django settings

        DATABASES = {
         'default': {
           'ENGINE': 'django.db.backends.postgresql',
           'NAME': 'dapp',
           'USER': 'postgres',
           'PASSWORD': 'postgres',
           'HOST': 'localhost'
          }
        }
      

Libraries

Working of Django forms

Django forms

Samples

Plugins