Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-backend / pithos / backends / settings.py @ daf4fb05

History | View | Annotate | Download (399 Bytes)

1
# SQLAlchemy (choose SQLite/MySQL/PostgreSQL).
2
BACKEND_DB_MODULE = 'pithos.backends.lib.sqlalchemy'
3
BACKEND_DB_CONNECTION = 'sqlite:///' + join(PROJECT_PATH, 'backend.db')
4

    
5
# Block storage.
6
BACKEND_BLOCK_MODULE = 'pithos.backends.lib.hashfiler'
7
BACKEND_BLOCK_PATH = join(PROJECT_PATH, 'data/')
8

    
9
# Default setting for new accounts.
10
BACKEND_QUOTA = 50 * 1024 * 1024 * 1024
11
BACKEND_VERSIONING = 'auto'