forest-cli
Version:
The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.
22 lines • 1.13 kB
TypeScript
import type { Config } from '../../../interfaces/project-create-interface';
import type { CommandOptions } from '../../../utils/option-parser';
import type { Config as OclifConfig } from '@oclif/core';
import AbstractProjectCreateCommand from '../../../abstract-project-create-command';
import Agents from '../../../utils/agents';
export default class DemoCommand extends AbstractProjectCreateCommand {
protected static options: CommandOptions;
/** @see https://oclif.io/docs/args */
static readonly args: {
applicationName: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
};
/** @see https://oclif.io/docs/flags */
static readonly flags: {};
static readonly description = "Create a new Forest Admin project with demo data \u2014 no database required.";
private readonly dumper;
protected readonly agent = Agents.NodeJS;
protected readonly requiresDatabase = false;
constructor(argv: string[], config: OclifConfig, plan?: any);
protected dump(config: Config): Promise<void>;
protected logNextSteps(): void;
}
//# sourceMappingURL=demo.d.ts.map