Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fail-basic-auth.js 747B

1234567891011121314151617181920212223242526272829303132333435
  1. /* Magic Mirror Test calendar calendar
  2. *
  3. * This configuration is a wrong authentication
  4. *
  5. * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
  6. * MIT Licensed.
  7. */
  8. let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
  9. timeFormat: 12,
  10. modules: [
  11. {
  12. module: "calendar",
  13. position: "bottom_bar",
  14. config: {
  15. calendars: [
  16. {
  17. maximumNumberOfDays: 10000,
  18. url: "http://localhost:8020/tests/configs/data/calendar_test.ics",
  19. auth: {
  20. user: "MagicMirror",
  21. pass: "StairwayToHeaven",
  22. method: "basic"
  23. }
  24. }
  25. ]
  26. }
  27. }
  28. ]
  29. });
  30. /*************** DO NOT EDIT THE LINE BELOW ***************/
  31. if (typeof module !== "undefined") {
  32. module.exports = config;
  33. }