-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11580 from abretaud/dav_src
Sample conf for dropbox and owncloud file sources
- Loading branch information
Showing
3 changed files
with
59 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../lib/galaxy/config/sample/file_sources_conf.yml.sample |
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,20 @@ | ||
- type: dropbox | ||
id: dropbox1 | ||
label: Dropbox files (configure access in user preferences) | ||
doc: Your Dropbox files - configure an access token via the user preferences | ||
accessToken: ${user.preferences['dropbox|access_token']} | ||
|
||
- type: webdav | ||
id: owncloud1 | ||
label: OwnCloud | ||
doc: External OwnCloud files (configure access in user preferences) | ||
url: ${user.preferences['owncloud|url']} | ||
root: ${user.preferences['owncloud|root']} | ||
login: ${user.preferences['owncloud|username']} | ||
password: ${user.preferences['owncloud|password']} | ||
|
||
- type: posix | ||
id: posix1 | ||
label: Posix | ||
doc: Files from local path | ||
root: /some/path/ |
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