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.

12345678
  1. const app = require("../js/app.js");
  2. const Log = require("logger");
  3. app.start((config) => {
  4. const bindAddress = config.address ? config.address : "localhost";
  5. const httpType = config.useHttps ? "https" : "http";
  6. Log.log("\nReady to go! Please point your browser to: " + httpType + "://" + bindAddress + ":" + config.port);
  7. });