Skip to content

Commit 04af33a

Browse files
committed
a quick helper script for setting env variables and starting the server
1 parent 35055d2 commit 04af33a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

run_perlweb

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
# A quick helper for setting environment variables and starting the server.
4+
5+
mypath=$(dirname $(readlink -f $0))
6+
(
7+
cd ${mypath};
8+
export CBROOTLOCAL=`pwd`
9+
export CBROOT=${CBROOTLOCAL}/combust
10+
./combust/bin/httpd
11+
)

0 commit comments

Comments
 (0)