我是一个完全的Heroku新手,我试图在Heroku上设置一个Django应用程序。我不知道在www.example.com中输入这些设置settings.py:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '', # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
'USER': '',
'PASSWORD': '',
'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '', # Set to empty string for default.
}
}
有人能帮我吗?谢谢!
1条答案
按热度按时间qmb5sa221#
您可以通过查看 Jmeter 板中的数据库信息或运行“heroku config”查看数据库配置字符串来手动执行此操作。但目前为止最好的方法是Heroku Getting Started guide for Django中的详细说明。将
dj-database-url==0.2.1
添加到requirements.txt
文件中,然后:代替其它数据库定义。