Imported Upstream version 1.4.1
[routino] / web / www / routino / paths.pl
1 #
2 # Routino CGI paths Perl script
3 #
4 # Part of the Routino routing software.
5 #
6 # This file Copyright 2008-2010 Andrew M. Bishop
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU Affero General Public License for more details.
17 #
18 # You should have received a copy of the GNU Affero General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21
22 # Directory path parameters
23
24 # EDIT THIS to set the root directory for the non-web data files.
25 $root_dir="../..";
26
27 # EDIT THIS if you want to change the location of the individual directories.
28 $bin_dir="$root_dir/bin";
29 $data_dir="$root_dir/data";
30 $results_dir="$root_dir/results";
31
32 1;