env.json•695 B
{
"type": "object",
"properties": {
"NTFY_BASE_URL": {
"type": "string",
"description": "Base URL for the ntfy server",
"default": "https://ntfy.sh"
},
"NTFY_DEFAULT_TOPIC": {
"type": "string",
"description": "Default ntfy topic for notifications",
"default": "ATLAS"
},
"LOG_FILE_DIR": {
"type": "string",
"description": "Directory for log files",
"default": "/app/logs"
},
"NTFY_API_KEY": {
"type": "string",
"description": "API key for ntfy server (if required)",
"default": "placeholder_api_key_for_testing"
}
},
"required": [
"NTFY_BASE_URL",
"NTFY_DEFAULT_TOPIC"
]
}