因此,我正在遵循来自Heroku和Django的入门指南。但是,当我运行此命令时:
heroku run python manage.py syncdb
我得到这个错误
psycopg2.OperationalError: could not connect to server: Connection refused Is the server running on host "localhost" and accepting TCP/IP connections on port 5432?
我以为这意味着尚未设置数据库…所以我也手动添加了shared_db选项:
heroku addons:add shared-database:5mb
但是..我仍然收到相同的错误。是什么赋予了?
我的应用程序结构已关闭… heroku希望结构看起来像这样:
toplevel requirements.txt myapp manage.py all other django stuff