|
Revision 250, 1.1 kB
(checked in by sypasche, 11 months ago)
|
PASTE_CONFIG should be <project_name>.ini
|
| Line | |
|---|
| 1 |
# |
|---|
| 2 |
# Copyright (C) 2008 Camptocamp |
|---|
| 3 |
# |
|---|
| 4 |
# This file is part of MapFish |
|---|
| 5 |
# |
|---|
| 6 |
# MapFish is free software: you can redistribute it and/or modify |
|---|
| 7 |
# it under the terms of the GNU Lesser General Public License as published by |
|---|
| 8 |
# the Free Software Foundation, either version 3 of the License, or |
|---|
| 9 |
# (at your option) any later version. |
|---|
| 10 |
# |
|---|
| 11 |
# MapFish is distributed in the hope that it will be useful, |
|---|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 14 |
# GNU Lesser General Public License for more details. |
|---|
| 15 |
# |
|---|
| 16 |
# You should have received a copy of the GNU Lesser General Public License |
|---|
| 17 |
# along with MapFish. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 18 |
|
|---|
| 19 |
# These configuration variables will always be included in every projects |
|---|
| 20 |
# They can be overridden in the project configuration |
|---|
| 21 |
|
|---|
| 22 |
export GENERATED_WARNING=" WARNING: This file is generated, do not edit!" |
|---|
| 23 |
export FQDN=$(hostname -f) |
|---|
| 24 |
export PROJECT=$(basename $PROJECT_DIR) |
|---|
| 25 |
|
|---|
| 26 |
export PYTHON_HOME=$BASE/env |
|---|
| 27 |
export PASTER=$PYTHON_HOME/bin/paster |
|---|
| 28 |
export PASTE_CONFIG=$PROJECT_DIR/$PROJECT/$PROJECT.ini |
|---|
| 29 |
export MAPFISHDIR=$PROJECT_DIR/MapFish |
|---|
| 30 |
|
|---|