-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Vikunja, Storj, Cloudflare R2, Docker Hub image, and updated se…
…cret handling
- Loading branch information
Showing
6 changed files
with
1,064 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,94 @@ | ||
BW_URL= | ||
BW_USERNAME= | ||
BW_PASSWORD= | ||
BW_TOTP_SECRET= | ||
ENCRYPTION_PASSWORD= | ||
ZIP_PASSWORD= | ||
ZIP_ATTACHMENT_PASSWORD= | ||
|
||
# pCloud Credentials | ||
PCLOUD_USERNAME= | ||
PCLOUD_PASSWORD= | ||
|
||
# Mega Credentials | ||
MEGA_EMAIL= | ||
MEGA_PASSWORD= | ||
|
||
# Dropbox Credentials | ||
DROPBOX_ACCESS_TOKEN= | ||
DROPBOX_REFRESH_TOKEN= | ||
DROPBOX_APP_KEY= | ||
DROPBOX_APP_SECRET= | ||
|
||
# Todoist Credentials | ||
TODOIST_TOKEN= | ||
|
||
# CalDAV Credentials | ||
CALDAV_URL= | ||
CALDAV_USERNAME= | ||
CALDAV_PASSWORD= | ||
|
||
# Nextcloud Credentials | ||
NEXTCLOUD_URL= | ||
NEXTCLOUD_USERNAME= | ||
NEXTCLOUD_PASSWORD= | ||
|
||
# Seafile Credentials | ||
SEAFILE_SERVER_URL= | ||
SEAFILE_USERNAME= | ||
SEAFILE_PASSWORD= | ||
|
||
# Filebase Credentials | ||
FILEBASE_ACCESS_KEY= | ||
FILEBASE_SECRET_KEY= | ||
|
||
# KeePass Password | ||
KEEPASS_PASSWORD= | ||
|
||
# Storj Credentials | ||
STORJ_ACCESS_KEY= | ||
STORJ_SECRET_KEY= | ||
STORJ_ENDPOINT= | ||
|
||
# R2 Credentials | ||
R2_ACCESS_KEY_ID= | ||
R2_SECRET_ACCESS_KEY= | ||
R2_ENDPOINT_URL= | ||
|
||
# Vikunja Credentials | ||
VIKUNJA_API_TOKEN= | ||
VIKUNJA_URL= | ||
|
||
# Google Drive Settings | ||
GOOGLE_SERVICE_ACCOUNT_FILE=/root/lazywarden/config/bitwarden-drive-backup-google.json | ||
GOOGLE_FOLDER_ID=1oWWis8QR3VTz5123450LjvXFvoB | ||
GOOGLE_FOLDER_ID= | ||
|
||
# Backup Settings | ||
BACKUP_DIR=/root/lazywarden/backup-drive/ | ||
CRON_SCHEDULE="0 0 23 * *" | ||
TIMEZONE=America/New_York | ||
TIMESTAMP=2024_09_18_22_33_41 | ||
|
||
# API URLs for Bitwarden | ||
API_URL=https://vault.bitwarden.com/api | ||
IDENTITY_URL=https://vault.bitwarden.com/identity | ||
|
||
# Organization ID | ||
ORGANIZATION_ID= | ||
|
||
# Access Token for Bitwarden Authentication | ||
ACCESS_TOKEN= | ||
|
||
# Notifications and Alerts | ||
TELEGRAM_TOKEN= | ||
TELEGRAM_CHAT_ID= | ||
DISCORD_WEBHOOK_URL= | ||
SLACK_WEBHOOK_URL= | ||
|
||
# SMTP Configuration for Email Notifications | ||
SMTP_SERVER=mail.smtp2go.com | ||
SMTP_PORT=8025 | ||
SMTP_USERNAME= | ||
SMTP_PASSWORD= | ||
EMAIL_RECIPIENT= | ||
SENDER_EMAIL= | ||
API_URL=https://vault.bitwarden.com/api # No Modify No Touch | ||
IDENTITY_URL=https://vault.bitwarden.com/identity # No Modify No Touch | ||
ORGANIZATION_ID=232c1890-78f9-40b4-b769-b195012f78bf | ||
ACCESS_TOKEN=0.3a2e352a-1111-1111-8fa2-b1c30123476a.4QTvdFZNe12345E12azrOns7Wux:H+5prumV2C123456PIKvUw== # Access Token from Bitwarden Secrets Manager Ubuntu-Lazywarden Machine | ||
CRON_SCHEDULE="0 0 23 * *" #Cron Every 24 hours for Docker | ||
TIMEZONE=America/New_York | ||
TIMESTAMP=2024_09_20_17_00_34 # To decrypt all zip files in your backup or import them, just use the timestamp that was generated in the backup. For example, use the files that are generated in the backup like this: bw-backup_2024_07_18_19_15_20.zip. | ||
SENDER_EMAIL= |
Oops, something went wrong.