Estoy usando Ubuntu 10.04. Siguiendo el tutorial here, he creado la cuenta de Heroku, instalé GIT y Heroku con éxito. Subí la clave SSH y agregué heroku a mi sistema PATH.Novato en Heroku: Error al insertar mi aplicación en Heroku
Después de eso, hice lo siguiente:
---------- PRIMERA (con éxito) -------------
$ cd PATH/TO/MY_APP
$ git init
Initialized empty Git repository in .git/
$ touch HELLO
$ git add .
$ git commit -m "Add a HELLO file"
------------ entonces (con éxito) ----------
$ heroku create
Enter your Heroku credentials.
Email: [email protected]
Password:
Uploading ssh public key /Users/joe/.ssh/id_rsa.pub
Created http://high-sunrise-58.heroku.com/ | [email protected]:high-sunrise-58.git
Git remote heroku added
----------- ÚLTIMO (¡¡¿Qué falló?) ----------
$ git push heroku master
Warning: Permanently added the RSA host key for IP address 'xx.xx.xx.xx' to the list of known hosts.
Counting objects: 3, done.
Writing objects: 100% (3/3), 226 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
f
-----> Heroku receiving push
! Heroku push rejected due to an unrecognized error.
! We've been notified, see http://support.heroku.com if the problem persists.
To [email protected]:high-sunrise-58.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to '[email protected]:high-sunrise-58.git'
Como se puede ver arriba, mi último paso fracasaron.
¿Cuál podría ser el posible motivo del error en mi ÚLTIMO paso (cuando envío mi aplicación a Heroku)? ¿Por qué falló?
no estás haciendo nada malo, me pondría en contacto con el soporte de Heroku. Sin embargo, una cosa es que esta es una aplicación de Rails, ¿verdad? –
Sí, será una aplicación de Rails. Pero actualmente acabo de crear un archivo de texto plano para enviarlo a heroku con fines de prueba. – Mellon