Skip to content

Commit

Permalink
docs: Update summary and description of CLI entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
angelmadames committed Apr 1, 2024
1 parent da313c5 commit 23f3d1d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,22 @@ import { environmentCommand } from './src/commands/environment';
import { composeCommand } from './src/commands/compose';
import { dependenciesCommand } from './src/commands/dependencies';
import { gitCommand } from './src/commands/git';
import { noIndent } from './src/utils/string';

const cli = new Command();

cli
.name('dems-cli')
.description('DEMS (Development Environment Management System) CLI')
.version('0.0.1')
.summary('DEMS (Development Environment Management System) CLI')
.description(
noIndent(`
DEMS is an easy-to-use automation tool to provision development
environments for compatible application repositories. It uses
Docker, Docker Compose, and the power of Bun to automate the
initialization of a project and all of its respositories.
`)
)
.addCommand(configCommand())
.addCommand(setupCommand())
.addCommand(gitCommand())
Expand Down

0 comments on commit 23f3d1d

Please sign in to comment.