I no longer know how to give the deploy of the chat Rocket on Heroku. Help?

Asked

Viewed 85 times

-1

1 - I cannot upgrade npm. This error happens: Your configured Registry (https://registry.npmjs.org/) may not support Audit requests, or the Audit endpoint may be temporarily unavailable. I have tried npm install / npm Audit fix / npm Audit and always fall into the same errors!

2 - Slug. ! Compiled Slug size: 515.6M is Too large (max is 500M). ! See: http://devcenter.heroku.com/articles/slug-size I already put a slugignore but it doesn’t seem to help.

3 - The version of my Node is V10.15.2 and npm is 6.14.4

4 - Following the documentation (https://rocket.chat/docs/installation/paas-deployments/heroku/) where do I give the command: git remote add Heroku https://git.heroku.com/portalidea.git // comes error: fatal: remote Heroku already exists.

5 - and finally when I give git push Heroku master, i get the error: error: src refspec master does not match any. error: failed to push some refs to 'https://git.heroku.com/portalidea.git'

Someone could give me a light?

  • The details are here :( https://pastebin.com/nhNRzLpw

1 answer

0

A classic root cause for this last message is:

when Reset was initialized, but no confirmation was made

If you haven’t added and committed yourself at least once, there won’t be a local affiliate master you can send to.

Try git commit -m "first commit"and try git push -u origin masteragain.

Consult Why I need to explicitly send a new branch? For more information.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.