UNPKG

@lxdhub/dbsync

Version:

Display, search and copy LXD-images using a web interface.

26 lines (24 loc) 562 B
import { Interfaces } from '@lxdhub/common'; import { IDatabaseSettings } from '@lxdhub/db'; /** * The settings for the LXDHub Database synchronization * service */ export interface LXDHubDbSyncSettings { /** * The settings for lxd */ lxd?: Interfaces.ILXDRemoteAuthentication; /** * The LXDHub config */ lxdhubConfig: Interfaces.ILXDHubConfig; /** * The database settings */ database: IDatabaseSettings; /* * Whether it should ignore if other dbsyncs are running */ force?: boolean; }