init

init Command

The init command creates a new configuration file for the project. It can prompt for project details if not provided, making it easy to set up a new project with the necessary configuration.

Flags

  • -c, --config stringPath to the configuration file. Use this flag to specify a custom configuration file path.

  • -w, --working-dir stringDefines the root path of the project for the command's execution context. This is useful for initializing projects in different directories.

  • -f, --forceOverwrite the configuration file if it already exists. Use with caution to avoid losing existing configurations.

  • --debugEnable debug mode. Provides additional output for troubleshooting.

  • --project-name stringProject Name. Specify the name of the project to be initialized.

  • --description stringProject Description. Provide a brief description of the project.

Interactive Mode

When run without options, the init command will prompt for project details interactively. This is useful for users who prefer a guided setup process.

Examples

bash
# Create a project interactively
$ dodo-cli init
Project Name: My Project
Description: A sample project


# Create a project with options
$ dodo-cli init --project-name "My Project" --description "A sample project"