Skip to content

MuhammadSaim/django-real-estate

Repository files navigation

Django Real Estate

Django Real Estate

Dependencies

  • Django 3
  • Postgres SQL

Configurations

Install dependencies

$ pipenv install

In djReal/settings.py add your database configurations

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

after that run migration

$ python manage.py migrate

Good to go Happy Django