aboutsummaryrefslogtreecommitdiff
path: root/src/util/merchant-paths.conf
blob: d7f39fae0f92d620e9b433366eb915a2762108bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[PATHS]
# The PATHS section is special, as filenames including $-expression are
# expanded using the values from PATHS or the system environment (PATHS
# is checked first).  libgnunetutil supports expanding $-expressions using
# defaults with the syntax "${VAR:-default}".  Here, "default" can again
# be a $-expression.
#
# We usually want $HOME for $TALER_HOME
#
TALER_HOME = ${HOME:-${USERPROFILE}}

# see XDG Base Directory Specification at
# http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
# for how these should be used.

# Persistent data storage
TALER_DATA_HOME = ${XDG_DATA_HOME:-$TALER_HOME/.local/share}/taler-merchant/

# Configuration files
TALER_CONFIG_HOME = ${XDG_CONFIG_HOME:-$TALER_HOME/.config}/taler-merchant/

# Cached data, no big deal if lost
TALER_CACHE_HOME = ${XDG_CACHE_HOME:-$TALER_HOME/.cache}/taler-merchant/

# Runtime data (i.e UNIX domain sockets, locks, always lost on system boot)
TALER_RUNTIME_DIR = ${TMPDIR:-${TMP:-/tmp}}/taler-merchant-runtime/

# Directory to use for temporary files.
TALER_TMP = ${TMPDIR:-${TMP:-/tmp}}/taler-merchant/