commit | author | age | ||
d1e1f5 | 1 | #!/bin/sh |
JK | 2 | |
3 | if [ ! -f data/mapproxy.yaml ]; then | |
4 | cp mapproxy.yaml data/ | |
5 | fi | |
6 | if [ ! -f data/extent.geojson ]; then | |
7 | cp carto/extent.geojson data/ | |
8 | fi | |
9 | ||
a32ed5 | 10 | uwsgi --http-socket :8080 --master --processes "${MAPPROXY_PROCESSES}" --plugins python --module wsgi |