-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecrets.sh.example
31 lines (26 loc) · 1.04 KB
/
secrets.sh.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
# secrets.sh.example - Template for credentials file
# Copy this file to secrets.sh and fill in your actual credentials
# DO NOT commit the secrets.sh file to version control!
# DigitalOcean Spaces credentials
export DO_SPACES_KEY="your-spaces-key-here"
export DO_SPACES_SECRET="your-spaces-secret-here"
export DO_SPACES_ENDPOINT="nyc3.digitaloceanspaces.com"
export DO_SPACES_BUCKET="your-bucket-name"
export DO_SPACES_REGION="nyc3"
# AWS S3 credentials
export AWS_ACCESS_KEY_ID="your-aws-key-here"
export AWS_SECRET_ACCESS_KEY="your-aws-secret-here"
export AWS_DEFAULT_REGION="us-east-1"
export AWS_S3_BUCKET="your-bucket-name"
# Dropbox credentials
export DROPBOX_TOKEN="your-dropbox-token-here"
# Google Drive credentials
export GDRIVE_CREDENTIALS_FILE="path-to-credentials-json"
# Email notification settings (for alerts)
export EMAIL_FROM="[email protected]"
export EMAIL_SMTP_SERVER="smtp.example.com"
export EMAIL_SMTP_PORT="587"
export EMAIL_SMTP_USER="username"
export EMAIL_SMTP_PASSWORD="your-password"
export EMAIL_SMTP_TLS="yes"