Steps 1-11, still need to do 12

This commit is contained in:
2025-08-07 15:29:23 -05:00
parent b66a516d20
commit 4019e921d3
15 changed files with 3731 additions and 55 deletions

View File

@@ -14,4 +14,14 @@ OPERATION_MODE=update
# PRICE_ADJUSTMENT_PERCENTAGE can be positive (increase) or negative (decrease)
# Example: 10 = 10% increase, -15 = 15% decrease
# Note: PRICE_ADJUSTMENT_PERCENTAGE is only used in "update" mode
PRICE_ADJUSTMENT_PERCENTAGE=10
PRICE_ADJUSTMENT_PERCENTAGE=10
# Scheduling Configuration (Optional)
# SCHEDULED_EXECUTION_TIME allows you to schedule the price update operation for a future time
# Format: ISO 8601 datetime (YYYY-MM-DDTHH:MM:SS)
# Examples:
# SCHEDULED_EXECUTION_TIME=2024-12-25T10:30:00 # Local timezone
# SCHEDULED_EXECUTION_TIME=2024-12-25T10:30:00Z # UTC timezone
# SCHEDULED_EXECUTION_TIME=2024-12-25T10:30:00-05:00 # EST timezone
# Leave commented out or remove to execute immediately (default behavior)
# SCHEDULED_EXECUTION_TIME=2024-12-25T10:30:00