Changeset 370:c40b5e1621b5

Show
Ignore:
Timestamp:
08/25/08 09:21:51 (3 months ago)
Author:
Christos Trochalakis <yatiohi@…>
Branch:
default
Message:

Configure directories in sample-dev.cfg, test.cfg to be relative to workdir

e.x.

scratchdir="%(workdir)s/local-vcs"

instead of:

scratchdir="/var/tmp/transifex/local-vcs"

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • sample-dev.cfg

    r343 r370  
    2222 
    2323# scratchdir: Local copies of the remote repos (cache). Needs some space. 
    24 scratchdir="/var/tmp/transifex/local-vcs" 
     24scratchdir="%(workdir)s/local-vcs" 
    2525 
    2626# Global ignore file wildcard list (all modules, all projects) 
     
    4848# If you have sqlite, here's a simple default to get you started 
    4949# in development 
    50 sqlalchemy.dburi="sqlite:////var/tmp/transifex/transifex.sqlite" 
     50sqlalchemy.dburi="sqlite:///%(workdir)s/transifex.sqlite" 
    5151 
    5252# for Windows users, sqlite URIs look like: 
     
    6161# log_debug_info_filter.on = False 
    6262 
    63 createrepo_cache_dir = "/var/tmp/createrepo" 
     63createrepo_cache_dir = "%(workdir)s/createrepo" 
    6464server.environment="development" 
    6565server.webpath="" 
  • test.cfg

    r343 r370  
    2222 
    2323# scratchdir: Local copies of the remote repos (cache). Needs some space. 
    24 scratchdir="/var/tmp/transifex/local-vcs" 
     24scratchdir="%(workdir)s/local-vcs" 
    2525 
    2626# Global ignore file wildcard list (all modules, all projects) 
     
    6868# log_debug_info_filter.on = False 
    6969 
    70 createrepo_cache_dir = "/var/tmp/createrepo" 
     70createrepo_cache_dir = "%(workdir)s/createrepo" 
    7171server.environment="development" 
    7272server.webpath=""