merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

merchant-paths.conf (1100B)


      1 [PATHS]
      2 # The PATHS section is special, as filenames including $-expression are
      3 # expanded using the values from PATHS or the system environment (PATHS
      4 # is checked first).  libgnunetutil supports expanding $-expressions using
      5 # defaults with the syntax "${VAR:-default}".  Here, "default" can again
      6 # be a $-expression.
      7 #
      8 # We usually want $HOME for $TALER_HOME
      9 #
     10 TALER_HOME = ${HOME:-${USERPROFILE}}
     11 
     12 # see XDG Base Directory Specification at
     13 # http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
     14 # for how these should be used.
     15 
     16 # Persistent data storage
     17 TALER_DATA_HOME = ${XDG_DATA_HOME:-$TALER_HOME/.local/share}/taler-merchant/
     18 
     19 # Configuration files
     20 TALER_CONFIG_HOME = ${XDG_CONFIG_HOME:-$TALER_HOME/.config}/taler-merchant/
     21 
     22 # Cached data, no big deal if lost
     23 TALER_CACHE_HOME = ${XDG_CACHE_HOME:-$TALER_HOME/.cache}/taler-merchant/
     24 
     25 # Runtime data (i.e UNIX domain sockets, locks, always lost on system boot)
     26 TALER_RUNTIME_DIR = ${TMPDIR:-${TMP:-/tmp}}/taler-merchant-runtime/
     27 
     28 # Directory to use for temporary files.
     29 TALER_TMP = ${TMPDIR:-${TMP:-/tmp}}/taler-merchant/