0
我想用lampp localhost託管我的django mywebsite。在setting.py如何爲django使用lampp服務器?
數據庫,併爲網站在Django LAMPP創建數據庫中添加該代碼= {
'default': {
'ENGINE': 'django.db.backends.mysql',
#'NAME': os.path.join(BASE_DIR, ''), 'NAME': 'DB_NAME',
'USER': 'DB_USER',
'PASSWORD': 'DB_PASSWORD',
'HOST': '127.0.0.1',
'PORT': '3306',
}
您是否試圖在本地部署應用程序以瞭解和了解部署過程,並且不希望使用啓動服務器的內置功能? – Anuj