### Software/Languages/Tools Used Python 3.9.0 Django 4.2.11 pip 20.2.3 PostgreSQL 17 ### Installation cd python3 -m pip install -r requirements.txt ### Database settings We have moved DB settings to env file. We have isntalled django-environ==0.12.0 (Please refer to requirements.txt) Please refer to jrp/settings.py [DATABASES] # copy .env.example to .env DATABASES = { "default": { "ENGINE": "django.db.backends.postgresql", "NAME": env("DB_NAME"), # Replace with your DB name in .env "USER": env("DB_USER"), # Replace with your DB username in .env "PASSWORD": env("DB_PASSWORD"), # Replace with your DB password in .env "HOST": env("DB_HOST"), # Use 'localhost' if running locally in .env "PORT": env("DB_PORT"), # Default PostgreSQL port in .env } } #### Running migrations python manage.py migrate ##### Running Server python3 manage.py runserver