25 lines
920 B
Plaintext
25 lines
920 B
Plaintext
# Backblaze B2 Configuration Example
|
|
#
|
|
# Backblaze B2 is affordable cloud storage with low egress fees.
|
|
#
|
|
# Setup Instructions:
|
|
# 1. Create a Backblaze account
|
|
# 2. Create a B2 bucket in the Backblaze dashboard
|
|
# 3. Create an Application Key with read/write access to your bucket
|
|
# 4. Note your Application Key ID and Application Key
|
|
# 5. Set the following GitHub secrets in your repository:
|
|
# - B2_ACCOUNT_ID: Your Backblaze Account ID (also called Application Key ID)
|
|
# - B2_APPLICATION_KEY: Your Backblaze Application Key
|
|
# - B2_BUCKET_NAME: Your B2 bucket name
|
|
#
|
|
# Note: Backblaze charges for storage and egress over the free tier (1GB/day)
|
|
|
|
[backblaze-b2]
|
|
type = b2
|
|
# Account credentials - use GitHub secrets
|
|
account = ${B2_ACCOUNT_ID}
|
|
key = ${B2_APPLICATION_KEY}
|
|
# Optional: Specify the bucket directly in the remote name
|
|
# This allows using the remote without specifying bucket in commands
|
|
# endpoint =
|