From 57073adeed0f8981561010b545656a80cab5b4c6 Mon Sep 17 00:00:00 2001 From: lewa <lene.wasskog@nibio.no> Date: Fri, 12 Jan 2024 09:57:21 +0100 Subject: [PATCH] feat: Add env-sample --- env-sample | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 env-sample diff --git a/env-sample b/env-sample new file mode 100644 index 0000000..033e7c4 --- /dev/null +++ b/env-sample @@ -0,0 +1,24 @@ +# Use this as an example to create your own .env file + +# Where your application resides +HOME_DIR=/home/foo/model/ +# Path to the weather data +WEATHER_DATA_DIR=in/ +# The models start date +START_DATE=2024-05-15 +# Path to optional CSV file with polygons for masking result. +MASK_FILE=Norge_landomrader.csv +# Path to the output (GeoTIFF) files as seen from the running model code +DATA_DIR=out/ +# Path to the generated mapfile as seen from the running model code +MAPFILE_DIR=mapfile/ +# The path to the output (GeoTIFF files) as seen from Mapserver +MAPSERVER_DATA_DIR=/foo/mapserver/data/SEPTREFHUM/ +# Where your generated MAPFILE and query templates should be placed +MAPSERVER_MAPFILE_DIR=/foo/mapserver/wms/SEPTREFHUM/ +# Where mapserver logs for this WMS are written +MAPSERVER_LOG_FILE=/foo/mapserver/log/SEPTREFHUM.log +# Path to the temporary directory for writing temporary files and images. Must be writable by the user the web server is running as +MAPSERVER_IMAGE_PATH=/foo/mapserver/tmp/ +# The value of the EXTENT parameter in Mapserver's mapfile. Units are DD (Decimal degrees) +MAPSERVER_EXTENT="-1.5831861262936526 52.4465003983706595 39.2608060398730458 71.7683216082912736" \ No newline at end of file -- GitLab