在 Django 4.2 使用 PostgreSQL 資料庫

實作

修改 requirements.txt 檔,添加依賴項目。

1
psycopg2-binary

安裝依賴套件。

1
pip install -r requirements.txt

修改 example/settings.py 檔。

1
2
3
4
5
6
7
8
9
10
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'USER': 'postgres',
'NAME': 'article_api',
'PASSWORD': 'root',
'HOST': 'localhost',
'PORT': '5432',
}
}

執行遷移。

1
python manage.py migrate

參考資料