Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用普通的 django testserver 时遇到了问题(它挂在我正在编写的一些 REST API 上)。但是我的普通服务器(gunicorn)没有问题。
因此,我想使用 gunicorn 作为我的测试服务器,但是第二个问题出现了: - 似乎 gunicorn 使用来自设置(mydb)的普通数据库,而不是测试服务器使用的“test_mydb”。
有人知道如何告诉 gunicorn 或 myapp/wsgi 应用程序使用哪个数据库吗?提前谢谢了
如果您将 gunicorn 安装为 Django 模块(即 add "gunicorn"to INSTALLED_APPS),您可以通过运行启动服务器
"gunicorn"
INSTALLED_APPS
python manage.py run_guincorn --settings=your_test_settings