# Git LFS endpoint for this portal's large data (epic po-g9y). Points at the
# Giftless server, which brokers LFS objects to/from a Cloudflare R2 bucket.
# Only files matched in .gitattributes (large data formats, NOT the bundled
# public/data sample) travel through here.
#
# This file is COMMITTED and MUST NOT contain credentials. git-lfs authenticates
# per-machine through LOCAL git config (never committed). Mint a repo-scoped JWT
# and point lfs.url at it locally:
#
#   TOKEN=$(python3 giftless/mint-token.py --org datopian --repo __PROJECT_SLUG__ --ttl 3600)
#   git config lfs.url "https://_jwt:$TOKEN@lfs.portaljs.com/datopian/__PROJECT_SLUG__"
#
# See giftless/README.md → "Authenticating a Git LFS client" for the why
# (the _jwt Basic piggyback avoids clobbering the presigned-R2 / verify auth).
[lfs]
	url = https://lfs.portaljs.com/datopian/__PROJECT_SLUG__
