A base application with Django which can be extended further
Pycharm
- 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' } }
-