* refactor: use short ids to allow changing the name of volumes & repos * refactor: address PR feedbacks * fix: make short_id non null after initial population
8 lines
416 B
TypeScript
8 lines
416 B
TypeScript
export const OPERATION_TIMEOUT = 5000;
|
|
export const VOLUME_MOUNT_BASE = "/var/lib/zerobyte/volumes";
|
|
export const REPOSITORY_BASE = "/var/lib/zerobyte/repositories";
|
|
export const DATABASE_URL = "/var/lib/zerobyte/data/ironmount.db";
|
|
export const RESTIC_PASS_FILE = "/var/lib/zerobyte/data/restic.pass";
|
|
export const SOCKET_PATH = "/run/docker/plugins/zerobyte.sock";
|
|
|
|
export const REQUIRED_MIGRATIONS = ["v0.14.0"];
|