summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Mckay <kyle.mckay@codethink.co.uk>2021-10-28 12:10:51 +0100
committerKyle Mckay <kyle.mckay@codethink.co.uk>2021-11-15 09:49:27 +0000
commit3608b54d4acec502dce34ada4cb44ca7fc20ce3e (patch)
tree5815de9efbb4c1150a36244424f609cca4b2e568
parent6d47378ae269c504bccfc867b3fa00f43bed4601 (diff)
downloadlorry-3608b54d4acec502dce34ada4cb44ca7fc20ce3e.tar.gz
Update readme to reflect new raw-file lorry type
-rw-r--r--README.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/README.md b/README.md
index d990196..0067010 100644
--- a/README.md
+++ b/README.md
@@ -67,6 +67,8 @@ Optional:
* **Perl**: Needed if you want to import tarballs.
+* **Git LFS**: Needed if you want to import raw files.
+
Lorry file specification
------------------------
@@ -141,7 +143,7 @@ is assumed to be the master branch.
### Subversion
To support all the branches and tags a layout needs to be specified as svn is
very flexible with the possible layouts, however the most common is to have the
-working branch in a directory called trunk, and the branches and tags in
+working branch in a directory called trunk, and the branches and tags in
respectively named subdirectories.
Because this is so common "standard" can be used as the layout
@@ -287,12 +289,16 @@ will be tagged as 'bkai00mp.ttf')
Lorry can store raw files in a git LFS repository, which may allow your git
server to serve those files via its repository browser.
-All raw files are stored in a single repository under subpaths generated from the leading components of the lorry's name.
+For convenience, raw file lorries can specify multiple sources to store in the same repository.
+Each raw file will be stored under a subpath corresponding to the source name.
{
- "pub/gnu/ccrtp": {
+ "raw-file-repo": {
"type": "raw-file",
- "url": "ftp://ftp.gnu.org/pub/gnu/ccrtp/ccrtp-2.1.2.tar.gz"
+ "urls": {
+ "authorities/england-and-wales": "http://geoportal1-ons.opendata.arcgis.com/datasets/0b09996863af4b5db78058225bac5d1b_0.kml",
+ "radiological-monitoring-data": "https://fsadata.github.io/radiological-monitoring-data/data/provisional-2016-bi-annual-aquatic-and-terrestrial-monitoring-results-26062017-raw-results.csv"
+ }
}
}