"""config.py

Prototype of configuration settings for the Illuminate workflow manager.
This should be customized and renamed to config.py for a new installation.
The working copy normally includes secrets which should not be committed to any repositories.
"""

import os.path, pathlib

# local paths to authentication caches
gdrive_token_file       = os.path.join(pathlib.Path.home(), 'your-path-to-token.json')
gdrive_credentials_file = os.path.join(pathlib.Path.home(), 'your-path-to-client_id.json')

# Google Drive identifiers for the required folders.
# Each of these will be the 33-character identifier string which Google Drive uses in the folder URL.
gdrive_submissions_folder_id = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
gdrive_previews_folder_id    = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
gdrive_approved_folder_id    = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'

# URL of the ScottyLabs backend server submissions API.
scotty_backend_url = 'https://example.com/submissions'


