This commit is contained in:
parent
6b22195040
commit
c511f6c185
4 changed files with 11 additions and 2 deletions
Binary file not shown.
|
|
@ -82,8 +82,12 @@ WSGI_APPLICATION = 'customerwebsitebackend.wsgi.application'
|
||||||
|
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
'ENGINE': 'django.db.backends.sqlite3',
|
'ENGINE': 'django.db.backends.postgresql',
|
||||||
'NAME': BASE_DIR / 'db.sqlite3',
|
'NAME': 'website',
|
||||||
|
'USER': 'vignesh',
|
||||||
|
'PASSWORD': 'vtechnosoft@123A',
|
||||||
|
'HOST': '127.0.0.1',
|
||||||
|
'PORT': '5432',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1,5 @@
|
||||||
INFO 2026-08-14 13:39:12,598 autoreload 55158 134155813900416 Watching for file changes with StatReloader
|
INFO 2026-08-14 13:39:12,598 autoreload 55158 134155813900416 Watching for file changes with StatReloader
|
||||||
|
INFO 2026-08-14 13:43:14,307 autoreload 55158 134155813900416 /home/vignesh/github/customerwebsitebackend/customerwebsitebackend/settings.py changed, reloading.
|
||||||
|
INFO 2026-08-14 13:43:14,567 autoreload 57706 139697750147200 Watching for file changes with StatReloader
|
||||||
|
INFO 2026-08-14 13:43:48,808 autoreload 57706 139697750147200 /home/vignesh/github/customerwebsitebackend/customerwebsitebackend/settings.py changed, reloading.
|
||||||
|
INFO 2026-08-14 13:43:49,076 autoreload 58191 123150790480000 Watching for file changes with StatReloader
|
||||||
|
|
|
||||||
|
|
@ -3,3 +3,4 @@ djangorestframework
|
||||||
djangorestframework-simplejwt
|
djangorestframework-simplejwt
|
||||||
django-cors-headers
|
django-cors-headers
|
||||||
gunicorn
|
gunicorn
|
||||||
|
psycopg2-binary
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue