sa-resume-worker / app /config.py
Avinashnalla7's picture
Drive OAuth, startup background worker, heartbeat polling
15dcca6
Raw
History Blame Contribute Delete
335 Bytes
import os
VERSION = "0.1.0"
SERVICE_NAME = os.getenv("SERVICE_NAME", "sa-resume-worker")
ROOT_FOLDER_ID = os.getenv("ROOT_FOLDER_ID", "").strip()
POLL_SECONDS = int(os.getenv("POLL_SECONDS", "300"))
HEARTBEAT_FILENAME = os.getenv("HEARTBEAT_FILENAME", "heartbeat.json")
GOOGLE_TOKEN_JSON = os.getenv("GOOGLE_TOKEN_JSON", "").strip()