diff options
author | Clint Adams <clint@softwarefreedom.org> | 2012-10-22 15:19:04 -0400 |
---|---|---|
committer | Clint Adams <clint@softwarefreedom.org> | 2012-10-22 15:19:04 -0400 |
commit | 025eb70c992914fbdf018c189d358ae250d2eeb1 (patch) | |
tree | 7367d3726594183bbb908d1a797cacd410c301cc /config/sqlite.yml |
This needs to be cleaned and sanitized before publication.
Diffstat (limited to 'config/sqlite.yml')
-rw-r--r-- | config/sqlite.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/config/sqlite.yml b/config/sqlite.yml new file mode 100644 index 0000000..ba8db2e --- /dev/null +++ b/config/sqlite.yml @@ -0,0 +1,20 @@ +Default: &defaults + database: sflctimekeeper.sqlite3 + poolsize: 10 + +Development: + <<: *defaults + +Testing: + database: sflctimekeeper_test.sqlite3 + <<: *defaults + +Staging: + database: sflctimekeeper_staging.sqlite3 + poolsize: 100 + <<: *defaults + +Production: + database: sflctimekeeper_production.sqlite3 + poolsize: 100 + <<: *defaults |