permissions

This commit is contained in:
Swydk 2024-08-31 12:23:32 +05:00
parent f079d90d0e
commit 2dcc632c8f
5 changed files with 6 additions and 4 deletions

View File

@ -128,10 +128,10 @@ import os
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'erkesh_mal',
'USER': 'postgres',
'PASSWORD': 'swydk',
'HOST': 'localhost',
'NAME': 'mydatabase',
'USER': 'myuser',
'PASSWORD': 'mypassword',
'HOST': 'db',
'PORT': '5432',
}
}

View File

@ -4,11 +4,13 @@ charset-normalizer==3.3.2
Django==5.0.6
django-cors-headers==4.4.0
djangorestframework==3.15.2
djangorestframework-simplejwt==5.3.1
gunicorn==23.0.0
idna==3.7
packaging==24.1
pillow==10.4.0
psycopg2-binary==2.9.9
PyJWT==2.9.0
requests==2.32.3
sqlparse==0.5.1
typing_extensions==4.12.2