-
Probably a example is the best explain. check this What i expected is a hook to run a bash script when build success or failed, or at least, can we override the default command which lucky dev will run as following sentry -b does?
Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
All From there, it'll run whatever is in your |
Beta Was this translation helpful? Give feedback.
All
lucky dev
does is runhttps://github.com/luckyframework/lucky_cli/blob/7c3c69c775ba9aad7ac0206c052db66a906941c1/src/lucky.cr#L28-L29
https://github.com/luckyframework/lucky_cli/blob/7c3c69c775ba9aad7ac0206c052db66a906941c1/src/dev.cr#L5
From there, it'll run whatever is in your
Procfile.dev
which is usuallylucky watch
. If you want a different command to run, you can update the Procfile.dev with anything else.