exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

exchange-paths.conf (1109B)


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