123456789101112131415161718192021 |
- from pathlib import Path
- import os
- BASE_DIR = Path(__file__).resolve().parent.parent
- # DATABASES = {
- # 'default': {
- # 'ENGINE': 'django.db.backends.postgresql',
- # 'NAME': '*******',
- # 'USER': '******',
- # 'PASSWORD': '*******',
- # 'HOST': '127.0.0.1',
- # 'PORT': '5432',
- # }
- # }
- DATABASES = {
- 'default': {
- 'ENGINE': 'django.db.backends.sqlite3',
- 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
- }
- }
|