I'm trying to deploy my app with Heroku
Every time I type in the terminal
git push heroku master
I get
error: src refspec master does not match any.
error: failed to push some refs to 'ssh://git@heroku.com/deucex1.git'
I don't know how to fix this and I don't know where "'ssh://git@heroku.com/deucex1.git'" is coming from, I never created anything with that name, but whatever it is, I want it out of my system. How do I do this?
Now when i type in git push heroku master
I get
! No such app as deucex1.
!
! SSH Key Fingerprint: ee:8e:6a:22:cf:81:91:bb:3a:b0:b5:c6:36:84:a5:1d
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
How do I get rid of the deucex1 thing?
New problem
When I enter
git push heroku master
remote: An error occurred while installing sqlite3 (1.3.13), and Bundler cannot
remote: continue.
remote: Make sure that `gem install sqlite3 -v '1.3.13'` succeeds before bundling.
remote:
remote: In Gemfile:
remote: sqlite3
remote: !
remote: ! Failed to install gems via Bundler.
remote: ! Detected sqlite3 gem which is not supported on Heroku:
remote: ! https://devcenter.heroku.com/articles/sqlite3
remote: !
remote: ! Push rejected, failed to compile Ruby app.
remote:
remote: ! Push failed
remote: Verifying deploy...
remote:
remote: ! Push rejected to sale9.
remote:
To ssh://heroku.com/sale9.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'ssh://git@heroku.com/sale9.git'
I then entered in the terminal
gem install sqlite3 -v '1.3.13'
and that didn't work
Got that working, but when I type in
git push heroku master
again, it just shows me
Everything up-to-date
Shouldn't i be getting more than that?
Now the tutorial asks me to enter
git push
but i get
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using
git remote add <name> <url>
and then push using the remote name
git push <name>