Initializing a Project

Use the init command to create a new project with default configuration files.

Syntax:

sidecrate init [options]

Options:

- -n, --name <name> – project name

- -d, --description <description> – project description

- -a, --author <author> – project author

- -f, --force – overwrite existing files

Example:

sidecrate init --name "My Project" --description "Awesome project" --author "John Doe"

Files Created:

- project.json – main configuration

- description.md – detailed description

- .sidecrateignore – archive exclusion

Updated on