config.yml.j2 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ---
  2. # Homepage configuration
  3. # See https://fontawesome.com/icons for icons options
  4. title: "{{ homer_title }}"
  5. subtitle: "{{ homer_subtitle }}"
  6. logo: "{{ homer_logo }}"
  7. # icon: "fas fa-home" # Optional icon instead of logo
  8. header: true
  9. footer: false # Set to "<Message>" to enable footer with a custom message
  10. # Optional theme customization
  11. theme: default # Options: default, sui
  12. # colors:
  13. # light:
  14. # highlight-primary: "#3367d6"
  15. # highlight-secondary: "#4285f4"
  16. # highlight-hover: "#5a95f5"
  17. # background: "#f5f5f5"
  18. # card-background: "#ffffff"
  19. # text: "#363636"
  20. # text-header: "#ffffff"
  21. # dark:
  22. # highlight-primary: "#3367d6"
  23. # highlight-secondary: "#4285f4"
  24. # highlight-hover: "#5a95f5"
  25. # background: "#131313"
  26. # card-background: "#2b2b2b"
  27. # text: "#eaeaea"
  28. # text-header: "#ffffff"
  29. # Optional message displayed at the top
  30. # message:
  31. # style: "is-dark" # Options: is-dark, is-warning, is-info, is-success, is-danger
  32. # title: "Welcome!"
  33. # icon: "fa fa-grin"
  34. # content: "This is your Homer dashboard. <br /> Add your services below."
  35. # Optional navbar links
  36. # links:
  37. # - name: "GitHub"
  38. # icon: "fab fa-github"
  39. # url: "https://github.com"
  40. # target: "_blank" # optional: open in new tab
  41. # - name: "Documentation"
  42. # icon: "fas fa-book"
  43. # url: "https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md"
  44. # Services
  45. # First level array represents a group.
  46. # Leave only an "items" key if not using groups (group name, icon & tagstyle are optional)
  47. services:
  48. - name: "Applications"
  49. icon: "fas fa-cloud"
  50. # items:
  51. # - name: "Example App"
  52. # logo: "assets/tools/sample.png" # or use "icon: fas fa-server"
  53. # subtitle: "Description of the app"
  54. # tag: "app" # Optional tag
  55. # tagstyle: "is-success" # Optional: is-success, is-warning, is-info, is-danger
  56. # url: "https://example.com"
  57. # target: "_blank" # optional: open in new tab
  58. # - name: "Monitoring"
  59. # icon: "fas fa-chart-line"
  60. # items:
  61. # - name: "Grafana"
  62. # icon: "fas fa-chart-area"
  63. # subtitle: "Metrics & dashboards"
  64. # url: "https://grafana.example.com"