Skip to content

Commit

Permalink
build based on 1daa944
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed Feb 16, 2024
1 parent 738445c commit 4a3d4e1
Show file tree
Hide file tree
Showing 17 changed files with 16,050 additions and 0 deletions.
2 changes: 2 additions & 0 deletions previews/PR70/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Treat all data files as binary
data/** binary
35 changes: 35 additions & 0 deletions previews/PR70/Data.toml
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]]
# ...
264 changes: 264 additions & 0 deletions previews/PR70/assets/documenter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4a3d4e1

Please sign in to comment.