Skip to content

Create Dropbox remote #4793

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dvc/config_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ class RelPath(str):
Optional("gdrive_trash_only", default=False): Bool,
**REMOTE_COMMON,
},
"dropbox": {**REMOTE_COMMON},
"http": {**HTTP_COMMON, **REMOTE_COMMON},
"https": {**HTTP_COMMON, **REMOTE_COMMON},
"webdav": {**WEBDAV_COMMON, **REMOTE_COMMON},
Expand Down
1 change: 1 addition & 0 deletions dvc/scheme.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class Schemes:
HTTPS = "https"
GS = "gs"
GDRIVE = "gdrive"
DROPBOX = "dropbox"
LOCAL = "local"
OSS = "oss"
WEBDAV = "webdav"
Expand Down
2 changes: 2 additions & 0 deletions dvc/tree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from urllib.parse import urlparse

from .azure import AzureTree
from .dropbox import DropboxTree
from .gdrive import GDriveTree
from .gs import GSTree
from .hdfs import HDFSTree
Expand All @@ -17,6 +18,7 @@

TREES = [
AzureTree,
DropboxTree,
GDriveTree,
GSTree,
HDFSTree,
Expand Down
Loading