How to see files and file structure on a deployed Heroku app

后端 未结 3 666
轻奢々
轻奢々 2020-12-07 15:18

My client app that is deployed on Heroku allows the user to upload images onto Heroku. I wanted to test out a change I made to delete images, so I need a way to see the sta

相关标签:
3条回答
  • 2020-12-07 15:57

    As in @Juliano Araújo's answerbut from a project folder connected via git you can just run heroku run bash

    0 讨论(0)
  • 2020-12-07 16:12

    I can do with this commands

    heroku login
    heroku run bash -a APPNAME
    $ cd app
    

    APPNAME is the name of your Heroku application And in the folder app are your files.

    When you finish your commands and want to return to your terminal you can write

    $ exit
    
    0 讨论(0)
  • 2020-12-07 16:12

    Terminal access is now provided by clicking a link "More" on the top right of the Heroku dashboard where you can select "run console". This presents an option to run terminal commands and shows a default of 'bash'. However, you do have to explicitly enter 'bash' or other command. If you edit files, you will have to manage synchronization back to your development code using Git.

    0 讨论(0)
提交回复
热议问题