Komodo IDE and Koha¶
This page is meant for all developers working actively with source code, and want to use Komodo IDE as their preferred development environment.
- Table of contents
- Komodo IDE and Koha
Configuring the project¶
Create a new project¶
It is preferred to save the project file to the root of the kohaclone/-directory.
Configure project¶
Configuring the debugging environment¶
http://docs.activestate.com/komodo/5.2/debugperl.html#debugperl_top
Remote debugging basic Perl scripts on remote hosts¶
- Put this script to your kohaclone/-directory and name it start_remote_debugging.sh
echo "Remember to run this like" echo " . start_remote_debugging.sh" echo "Not! " echo "./start_remote_debugging.sh" export PERL5LIB=/home/kivilahtio/Komodo-PerlRemoteDebugging-9/:$PERL5LIB export PERLDB_OPTS=RemotePort=193.65.112.189:9000 async=1 export DBGP_IDEKEY=1234
- Source it to your bash environment
- Then you can remote debug just by running scripts with the -d -flag. Eg:
..~/kohaclone$ perl -d misc/cronjobs/fines.pl