settings.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "CronApi": {
  3. "BaseUri": "http://172.17.0.1:5000"
  4. },
  5. "Alerts": {
  6. "Command": "/home/pi/mpc-alarm-cron.sh",
  7. "Groups": [
  8. {
  9. "Name": "Weekdays",
  10. "Options": [
  11. {
  12. "Label": "06:20 - Work",
  13. "Pattern": "20 06 * * MON-FRI"
  14. },
  15. {
  16. "Label": "08:30 - Holidays",
  17. "Pattern": "30 08 * * MON-FRI"
  18. },
  19. {
  20. "Label": "09:00 - Sleeping In",
  21. "Pattern": "00 09 * * MON-FRI"
  22. }
  23. ]
  24. },
  25. {
  26. "Name": "Saturday",
  27. "Options": [
  28. {
  29. "Label": "08:20 - Long-Jog",
  30. "Pattern": "20 08 * * SAT"
  31. },
  32. {
  33. "Label": "08:00 - Long-Jog (early)",
  34. "Pattern": "00 08 * * SAT"
  35. },
  36. {
  37. "Label": "07:40 - Long-Jog (very early)",
  38. "Pattern": "40 07 * * SAT"
  39. }
  40. ]
  41. },
  42. {
  43. "Name": "Sunday",
  44. "Options": [
  45. {
  46. "Label": "09:00 - Lazy",
  47. "Pattern": "00 09 * * SUN"
  48. }
  49. ]
  50. }
  51. ]
  52. }
  53. }