How to create an intermediate environment in heroku and click on the application

I have a rails project deployed on heroku that only has a production environment.

I created an intermediate environment by running: "heroku create appname - backup"

the bullet size for my exsiting application is 4.4 MB and the .git repository is 85 MB.

when I execute git push master it tries to load all 85MB into heroku instead of just 4.4MB (which actually contains application files).

is that what should happen? Am I creating an intermediate environment?

Thank.

+3
source share
2 answers

Heroku git push. . , .

+3
+1

Source: https://habr.com/ru/post/1774604/


All Articles