###########################
# Login Credentials       #
###########################

## Used for logging in to Synapse. See https://python-docs.synapse.org/tutorials/authentication/
## for information on retrieving an auth token.
#[authentication]
#username = <username>
#authtoken = <authtoken>


## If you have projects with file stored on SFTP servers, you can specify your credentials here
## You can specify multiple sftp credentials
#[sftp://some.sftp.url.com]
#username= <sftpuser>
#password= <sftppwd>
#[sftp://a.different.sftp.url.com]
#username= <sftpuser>
#password= <sftppwd>


## If you have projects that need to be stored in an S3-like (e.g. AWS S3, Openstack) storage but cannot allow Synapse
## to manage access your storage you may put your credentials here.
## To avoid duplicating credentials with that used by the AWS Command Line Client,
## simply put the profile name form your ~/.aws/credentials file
## more information about aws credentials can be found here http://docs.aws.amazon.com/cli/latest/userguide/cli-config-files.html
#[https://s3.amazonaws.com/bucket_name] # this is the bucket's endpoint
#profile_name=local_credential_profile_name


###########################
# Caching                 #
###########################

## your downloaded files are cached to avoid repeat downloads of the same file. change 'location' to use a different folder on your computer as the cache location
#[cache]
#location = ~/.synapseCache


###########################
# Advanced Configurations #
###########################

## If this section is specified, then the synapseclient will print out debug information
#[debug]


## Configuring these will cause the Python client to use these as Synapse service endpoints instead of the default prod endpoints.
#[endpoints]
#repoEndpoint=<repoEndpoint>
#authEndpoint=<authEndpoint>
#fileHandleEndpoint=<fileHandleEndpoint>
#portalEndpoint=<portalEndpoint>

## Settings to configure how Synapse uploads/downloads data
#[transfer]

# use this to configure the default for how many threads/connections Synapse will use to perform file transfers.
# Currently this applies only to files whose underlying storage is AWS S3.
# max_threads=16