How to livereload Django templates?

后端 未结 4 600
陌清茗
陌清茗 2021-02-07 04:06

How can I livereload Django templates?

4条回答
  •  醉酒成梦
    2021-02-07 04:51

    You can use python-livereload like this:

    pip install livereload
    livereload project/static
    

    And in order to make this work add this snippet into your base.html:

    
    

    Then run ./manage.py runserver and it should work.

提交回复
热议问题