Revision c64a17246dc72ae4e61e2bb6b2360677362a0cdd authored by Mark T. Holder on 25 July 2023, 19:25:21 UTC, committed by Mark T. Holder on 25 July 2023, 19:25:21 UTC
1 parent 72c7b28
Raw File
config-test.example
# Rename this file to "config" to make it active
# this is an example config for tests in the config-test directory
#tests should pass if this config is renamed to conifg and placed in the phylesystem-api/private dir
[apis]

# the full path to where a local phylesystem.git can be found
repo_path   = REPO_PATH
repo_parent   = REPO_PAR
# prefix for new study ids. should be of the form [a-z][a-z]_
# new_study_prefix = zz_

# the remote to push changes to
# This will usually be "origin" on a local dev machine where phylesystem.git
# was cloned via SSH (git@github.com:...)
# On deployed servers, which use anonymous git:// protocol, we add a new
# remote "originssh" which can be pushed to
repo_remote = REPO_REMOTE

# these allow us to specify the SSH keys that git pushes
# will use. Leave the config keys in this config file,
# without any values assigned, to not use this feature
git_ssh     = GIT_SSH
pkey        = PKEY

oti_base_url = OTI_BASE_URL
opentree_docstore_url = OPENTREE_DOCSTORE_URL
# Push scripts will substitute the OTI_BASE_URL server-config variables, shared
# with other apps.

# prefix for the GitHubRemote used in the push mirror
#   default is git@github.com:OpenTreeOfLife
# git_hub_remote = git@github.com:OpenTreeOfLife

[logging]
level = OPEN_TREE_API_LOGGING_LEVEL
formatter = OPEN_TREE_API_LOGGING_FORMATTER
filepath = OPEN_TREE_API_LOGGING_FILEPATH

[filesize]
#overrides for peyotl config values in case no peyotl config exists
peyotl_max_file_size = 10
validation_max_num_trees = 0
back to top