diff --git a/Netdisco/lib/App/Netdisco/Manual/Developing.pod b/Netdisco/lib/App/Netdisco/Manual/Developing.pod index 37a09a23..7a057061 100644 --- a/Netdisco/lib/App/Netdisco/Manual/Developing.pod +++ b/Netdisco/lib/App/Netdisco/Manual/Developing.pod @@ -43,17 +43,28 @@ On port 5001 so it won't conflict with any already-running web frontend =item * -Restarts the web server when you save a file in the C or C directory +Restarts the web server when you save a file in the C or C +directory =back -You might also want to set C to C in your config to quieten -some of the web client callbacks. +You might also want to set C to C in your config to +quieten some of the web client callbacks. For the daemon, it's very similar: DBIC_TRACE=1 ~/bin/localenv bin/netdisco-daemon-fg +You can point at a different database without editing C: + + NETDISCO_DBNAME=testdb DBIC_TRACE=1 ~/bin/localenv plackup -R share,lib -p 5001 bin/netdisco-web-fg + NETDISCO_DBNAME=testdb DBIC_TRACE=1 ~/bin/localenv bin/netdisco-daemon-fg + +It's recommended to delete the "C<~/perl5/lib/perl5/App/Netdisco>" +directory to avoid accidentally picking up old Netdisco code. For working on +L you can similarly delete "C<~/perl5/lib/perl5/SNMP/Info*>" and +then symlink from "C" and "C" to your git repo. + Happy hacking! =head1 Introduction