hasura / awesome-live-reloading

A curated collection of live-reloading / hot-reloading / watch-reloading tools for different languages and frameworks.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add entry for `entr` as a generic way to add re-compile support on Unix environments

mandx opened this issue · comments

The site http://entrproject.org/ has a few of examples, and here's how I use it personally:

find my_app/ -name \*.py | entr -r python -m my_app serve

Where the command python -m my_app serve launches a generic Python Web server (framework independent).