10 lines
325 B
JavaScript
10 lines
325 B
JavaScript
// Configuration Override Example
|
|
// Copy this file to config.js and modify as needed
|
|
|
|
export const CONFIG_OVERRIDE = {
|
|
NTFY_TOPIC: 'your-custom-topic',
|
|
NTFY_SERVER: 'https://your-ntfy-server.com',
|
|
POLL_INTERVAL: '0 */30 * * *', // Every 30 minutes instead of hourly
|
|
// Add any other config overrides here
|
|
};
|