-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Documenter.jl
committed
Feb 16, 2024
1 parent
738445c
commit 4a3d4e1
Showing
17 changed files
with
16,050 additions
and
0 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,2 @@ | ||
# Treat all data files as binary | ||
data/** binary |
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,35 @@ | ||
# Version of the data TOML format. | ||
data_config_version=1 | ||
|
||
[[datasets]] | ||
# Some alphanumeric name (can include spaces and underscores) | ||
name="a_text_file" | ||
# Optional description | ||
description="A text file containing the standard greeting" | ||
# A unique ID. Generate with UUIDs.uuid4() | ||
uuid="b498f769-a7f6-4f67-8d74-40b770398f26" | ||
|
||
# Storage location | ||
[datasets.storage] | ||
# The name of the storage driver. | ||
driver="FileSystem" | ||
# Data stored in FileSystem is either Blob (a file) or BlobTree (a directory/folder) | ||
type="Blob" | ||
# Path with posix `/` separators. | ||
# Use @__DIR__ for paths relative to Data.toml | ||
path="@__DIR__/data/file.txt" | ||
|
||
# A second example | ||
[[datasets]] | ||
name="a_tree_example" | ||
description="A very simple directory tree" | ||
uuid="e7fd7080-e346-4a68-9ca9-98593a99266a" | ||
|
||
[datasets.storage] | ||
driver="FileSystem" | ||
type="BlobTree" | ||
path="@__DIR__/data/csvset" | ||
|
||
# Further datasets can be added as desired | ||
# [[datasets]] | ||
# ... |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.