2

我按照heroku 站点中指示的所有步骤进行操作,每次都遇到相同的错误:

$ git push heroku master

Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (8/8), done.
Writing objects: 100% (11/11), 4.12 KiB, done.
Total 11 (delta 0), reused 0 (delta 0)


 !     Push rejected, no Cedar-supported app detected

To git@heroku.com:glacial-mountain-3911.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:glacial-mountain-3911.git'

我一直在寻找其他解决方案,其中一些有一些不同,但没有一个已经运行:(

这是我的项目的结构:

drwxr-xr-x   9 marcpou  staff  306 28 jul 22:07 .
drwxr-xr-x  17 marcpou  staff  578 28 jul 00:52 ..
drwxr-xr-x  13 marcpou  staff  442 28 jul 22:09 .git
-rw-r--r--   1 marcpou  staff   24 28 jul 01:05 .gitignore
-rw-r--r--   1 marcpou  staff   32 28 jul 00:57 Procfile
drwxr-xr-x  10 marcpou  staff  340 28 jul 00:58 hellodjango
-rw-r--r--   1 marcpou  staff  254 28 jul 00:56 manage.py
-rw-r--r--   1 marcpou  staff  154 28 jul 22:08 requeriments.txt
drwxr-xr-x   6 marcpou  staff  204 28 jul 00:56 venv

以及requeriments.txt文件的内容

Django==1.5.1
distribute==0.6.34
dj-database-url==0.2.2
dj-static==0.0.5
django-toolbelt==0.0.1
gunicorn==17.5
psycopg2==2.5.1
static==0.4
wsgiref==0.1.2

这就是 Procfile 的内容

web: gunicorn hellodjango.wsgi

我看到我的项目中不存在文件“hellodjango.wsgi”。内容应该是什么?这些是我项目的文件。

-rw-r--r--  1 marcpou  staff     0 28 jul 00:56 __init__.py
-rw-r--r--  1 marcpou  staff   155 28 jul 00:57 __init__.pyc
-rw-r--r--  1 marcpou  staff  5869 28 jul 01:02 settings.py
-rw-r--r--  1 marcpou  staff  2876 28 jul 00:58 settings.pyc
-rw-r--r--  1 marcpou  staff   571 28 jul 00:56 urls.py
-rw-r--r--  1 marcpou  staff   293 28 jul 00:58 urls.pyc
-rw-r--r--  1 marcpou  staff  1557 28 jul 01:04 wsgi.py
-rw-r--r--  1 marcpou  staff  1059 28 jul 00:57 wsgi.pyc

在heroku上测试Push过程,我已经创建了一个应用程序,但是我没有编辑任何东西,这意味着我没有设置任何数据库连接。

有人知道吗?我想这个错误是微不足道的,但我看不到错误。

提前致谢!

4

1 回答 1

3

我很确定纠正 requirements.txt 的拼写会解决这个问题。然后继续添加 postgres db 并提升它的下一个问题。

https://devcenter.heroku.com/articles/heroku-postgresql

于 2013-07-30T18:53:34.943 回答