Skip to content

Commit 6c816df

Browse files
committed
TT#53701 Line-wrap helper scripts
Change-Id: Ia5352b21a807a47ac816c07d0c74b0416a26b7b2
1 parent e1e2dbe commit 6c816df

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

script/ngcp_panel_debug.sh

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
PERL5LIB=/opt/Komodo-IDE-9/remote_debugging PERLDB_OPTS="RemotePort=127.0.0.1:9000" DBGP_IDEKEY="jdoe" CATALYST_DEBUG=1 DBIC_TRACE=1 DBIC_TRACE_PROFILE=console DEVEL_CONFESS_OPTIONS='objects builtin dump color source' perl -d `which plackup` -I ../data-hal/lib -I ../ngcp-schema/lib -I lib -I ../sipwise-base/lib/ ngcp_panel.psgi --listen /tmp/ngcp_panel_sock --nproc 2 -s FCGI -r
1+
#!/bin/sh
2+
3+
export PERL5LIB=/opt/Komodo-IDE-9/remote_debugging
4+
export PERLDB_OPTS="RemotePort=127.0.0.1:9000"
5+
export DBGP_IDEKEY="jdoe"
6+
export CATALYST_DEBUG=1
7+
export DBIC_TRACE=1
8+
export DBIC_TRACE_PROFILE=console
9+
export DEVEL_CONFESS_OPTIONS='objects builtin dump color source'
10+
11+
perl -d "$(which plackup)" \
12+
-I ../data-hal/lib \
13+
-I ../ngcp-schema/lib \
14+
-I lib \
15+
-I ../sipwise-base/lib/ \
16+
ngcp_panel.psgi --listen /tmp/ngcp_panel_sock --nproc 2 -s FCGI -r

script/plain-server.sh

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
#!/bin/sh
2-
CATALYST_DEBUG=1 DBIC_TRACE=1 DBIC_TRACE_PROFILE=console DEVEL_CONFESS_OPTIONS='objects builtin dump color source' perl -I ../data-hal/lib -I ../ngcp-schema/lib -I lib -I ../sipwise-base/lib/ script/ngcp_panel_server.pl --port 1444 -r
2+
3+
export CATALYST_DEBUG=1
4+
export DBIC_TRACE=1
5+
export DBIC_TRACE_PROFILE=console
6+
export DEVEL_CONFESS_OPTIONS='objects builtin dump color source'
7+
8+
perl \
9+
-I ../data-hal/lib \
10+
-I ../ngcp-schema/lib \
11+
-I lib \
12+
-I ../sipwise-base/lib/ \
13+
script/ngcp_panel_server.pl --port 1444 -r

0 commit comments

Comments
 (0)