I'm developing with Cowboy and erlang.mk and currently my flow is : 1. change code in vi, save, run make 2. close Cowboy, start Cowboy again (i'm running Cowboy in console mode for tracing/debugging purposes)
Is there a way to make Cowboy reload and restart itself automatically with as little lag as possible? I understand I could add Cowboy stop and start to my makefile but maybe there is a better/more responsive way?
I saw there is sync package from rustyio but it seems overly complicated to have to hook it into my app directly.
Take a look at p6hot_deploy.erl
It's what my company uses for simplistic auto-redeploy. it scans the filesystem once a second looking for modules where the date has changed and reloads them.
so your process will be: edit, save, make
This module will see the file change and force a reload
it's not the fancy OTP way with releases and stuff, but a more low level simple code swap.
note: you'll have to change this to work for you as it depends on my logging macros and stuff, but you should get the gist by looking at it.
The key part is this function:
it attempts to cycle in the new code in a safe way.