Rails Byebug Did Not Stop Application

后端 未结 3 1024
我在风中等你
我在风中等你 2021-01-30 17:37

I want to use byebug to debug my application but the app is never stop although I already put byebug inside my code. Here is my Gemfile.

group :deve         


        
3条回答
  •  情书的邮戳
    2021-01-30 18:18

    I was having issues with changes to files (like adding byebug) being synced and found adding consistent to the volume definition helped:

      volumes:
        - .:/usr/src/app:consistent
    

提交回复
热议问题