import os
import secrets

DEBUG = True if os.environ.get("DEBUG", "True") == "True" else False
IN_DOCKER = True if os.environ.get("IN_DOCKER", False) == "True" else False

HEADER = "application/json"
BASE_URL = "http://noticegen.codesrv.com:9001"


AWS_ACCESS_KEY_ID = "your-access-key-id"
AWS_SECRET_ACCESS_KEY = "your-secret-access-key"
AWS_REGION_NAME = "us-east-1"  # Replace with your region
S3_BUCKET_NAME = "your-bucket-name"

print("DEBUG:", DEBUG)
print("IN_DOCKER:", IN_DOCKER)

HOST = "0.0.0.0"
APP_MAIN_PORT = int(os.environ.get("APP_MAIN_PORT", 9001))
