Skip to content

A base application with Django which can be extended further

License

Notifications You must be signed in to change notification settings

signalarun/django-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A base application with Django which can be extended further

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published