我有Django应用程序,其中包括用户和帖子模型。这些应用程序在本地进行迁移和迁移后运行得很好。我尝试了两种不同的方法来部署这些应用程序到Heroku。首先,使用Heroku Git,这些应用程序在Heroku上的运行方式与在本地相同。
When using GitHub, however, all data were not brought to Heroku. I tried to run "python manage.py makemigrations" and "python manage.py migrate" on Heroku, but the data from local was not brought still.
如果你能解释并帮助解决使用GitHub的问题,我将非常感激。
2条答案
按热度按时间qzlgjiam1#
我认为你也必须在Heroku上迁移,尝试:
请参阅heroku docs
kcwpcxri2#
检查您.gitignore文件,可能是gitignore文件中的db.sqlite,您可以将其删除;另一个选项是转储数据并在生产中加载,您可以运行
和加载数据