40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# ComicVine Database Updater Configuration
|
|
# Copy this file to comicvine_config.env and fill in your values
|
|
# This file should be in the same directory as sqlite_cv_updater.py
|
|
|
|
# ComicVine API Key (required)
|
|
# Get your free API key at: https://comicvine.gamespot.com/api/
|
|
COMICVINE_API_KEY=your_api_key_here
|
|
|
|
# Database Retention (optional)
|
|
# Number of dated database backups to keep (default: 7)
|
|
# Set to 0 to disable automatic cleanup
|
|
# With 3GB databases, 7 days = ~21GB storage
|
|
KEEP_DAYS=7
|
|
|
|
# Email Configuration (optional)
|
|
# If configured, you'll receive daily email reports
|
|
|
|
# Email addresses
|
|
EMAIL_TO=your@email.com
|
|
EMAIL_FROM=comicvine@yourdomain.com
|
|
|
|
# SMTP Settings for SMTP2GO (default)
|
|
SMTP_HOST=mail.smtp2go.com
|
|
SMTP_PORT=2525
|
|
SMTP_USER=your_smtp2go_username
|
|
SMTP_PASS=your_smtp2go_password
|
|
|
|
# Alternative SMTP providers:
|
|
# Gmail (use app-specific password):
|
|
# SMTP_HOST=smtp.gmail.com
|
|
# SMTP_PORT=587
|
|
# SMTP_USER=your@gmail.com
|
|
# SMTP_PASS=your_app_specific_password
|
|
#
|
|
# SendGrid:
|
|
# SMTP_HOST=smtp.sendgrid.net
|
|
# SMTP_PORT=587
|
|
# SMTP_USER=apikey
|
|
# SMTP_PASS=your_sendgrid_api_key
|