@lxdhub/web
Version:
<h2 align="center"> <img src="https://i.imgur.com/RGCZZjl.png" alt="LXD Hub Web Logo" width="500" /> </h2>
26 lines (25 loc) • 570 B
TypeScript
import { AppSettings } from '../src/settings';
/**
* The settings for the web interface
* of lxdhub
*/
export interface LXDHubWebSettings extends AppSettings {
/**
* The port on which the web interface should
* be run at
*/
port: number;
/**
* The host url on which the web interface should
* be run at
*/
hostUrl: string;
/**
* The google analytics key e.g. UA-XXXXXXXXX-X
*/
googleAnalytics?: string;
/**
* The version of the NPM `@lxdhub/web` package
*/
package_version?: string;
}