- Add .gitignore: exclude compiled binaries, build artifacts, and Helm values files containing real secrets (authentik, prometheus) - Add all Kubernetes deployment manifests (deployment/) - Add services source code: ha-sync, device-inventory, games-console, paperclip, parts-inventory - Add Ansible orchestration: playbooks, roles, inventory, cloud-init - Add hardware specs, execution plans, scripts, HOMELAB.md - Add skills/homelab/SKILL.md + skills/install.sh to preserve Copilot skill - Remove previously-tracked inventory-cli binary from git index Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
730 B
TypeScript
13 lines
730 B
TypeScript
export interface LoadResult {
|
|
path?: string;
|
|
config: any;
|
|
}
|
|
export declare function resolve(cwd: string, filename?: string): Promise<string | void>;
|
|
export declare function resolveSync(cwd: string, filename?: string): string | void;
|
|
export declare function find(dir: string): Promise<string | void>;
|
|
export declare function findSync(dir: string): string | void;
|
|
export declare function load(cwd: string, filename?: string): Promise<LoadResult>;
|
|
export declare function loadSync(cwd: string, filename?: string): LoadResult;
|
|
export declare function readFile(filename: string): Promise<any>;
|
|
export declare function readFileSync(filename: string): any;
|
|
export declare function parse(contents: string, filename: string): any;
|