-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
conda-recipe: Launch a test dvid server before running 'make test'
- Loading branch information
1 parent
e3f5bb6
commit 7847acd
Showing
3 changed files
with
59 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Example simple configuration for DVID with single database backend. | ||
# See config-multidb.toml for full range of configurations including | ||
# email notifications, authentication, and backend assignments. | ||
|
||
[server] | ||
# host = "mygreatserver.test.com" # Lets you specify a user-friendly alias for help messages. | ||
httpAddress = "localhost:8000" | ||
rpcAddress = "localhost:8001" | ||
webClient = "./http/dvid-web-console" | ||
|
||
[logging] | ||
logfile = "/tmp/dvid.log" | ||
max_log_size = 500 # MB | ||
max_log_age = 30 # days | ||
|
||
# If no backend is specified, DVID will return an error unless there is only | ||
# one store, which will automatically be backend.default, as in this example. | ||
# See config-full.toml for example of [backend] use. | ||
|
||
|
||
# List the different storage systems available for metadata, data instances, etc. | ||
# Any nickname can be used for a store. In this case, it's "raid6" to reflect | ||
# that the directory is on a RAID-6 drive system. Note that all store properties | ||
# like "engine" and "path" should be lower-case by convention. | ||
[store] | ||
[store.raid6] | ||
engine = "basholeveldb" | ||
path = "/tmp/basholeveldb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters