adding postgres
Some checks failed
Deploy Beta (NATIVE) / deploy (push) Failing after 17s

This commit is contained in:
vickytechkey 2026-08-14 19:14:24 +05:30
parent 6b22195040
commit c511f6c185
4 changed files with 11 additions and 2 deletions

View file

@ -82,8 +82,12 @@ WSGI_APPLICATION = 'customerwebsitebackend.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'website',
'USER': 'vignesh',
'PASSWORD': 'vtechnosoft@123A',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}

View file

@ -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: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

View file

@ -3,3 +3,4 @@ djangorestframework
djangorestframework-simplejwt
django-cors-headers
gunicorn
psycopg2-binary