Is there any way to test the addon with changes locally and not pushed online? using buildout.coredev
ps: i made some changes in the p.a.discussion
and want to check if it works locally or not then pushing it to repo
Is there any way to test the addon with changes locally and not pushed online? using buildout.coredev
ps: i made some changes in the p.a.discussion
and want to check if it works locally or not then pushing it to repo
in your local.cfg do this:
[buildout]
sources = sources
custom-eggs +=
your.addon
auto-checkout +=
your.addon
[sources]
# your addon live in /path/to/your/packages/
your.addon = fs your.addon path=/path/to/your/packages/
it worked at first attempt! thanks @1letter