Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.05 KB

File metadata and controls

39 lines (32 loc) · 1.05 KB

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