Initialize a New Uplinkr Project
Command
Section titled “Command”php artisan uplinkr:project:initDescription
Section titled “Description”Initializes a new project and creates the necessary JSON-Data and stores it in the configured storage location.
Options
Section titled “Options”| Option | Type | Required | Description |
|---|---|---|---|
--project | string | Yes | Name of the project to initialize |
--label | string | No | Optional project name/label |
--description | string | No | Optional project description |
--force | flag | No | Force execution without confirmation |
Usage Examples
Section titled “Usage Examples”Basic initialization
Section titled “Basic initialization”php artisan uplinkr:project:init --project=my-projectWith label and description
Section titled “With label and description”php artisan uplinkr:project:init \ --project=my-project \ --label="My Website" \ --description="Production website monitoring"Force mode (skip confirmation)
Section titled “Force mode (skip confirmation)”php artisan uplinkr:project:init --project=my-project --forceBehavior
Section titled “Behavior”- If the project already exists, you will be prompted for confirmation (unless
--forceis used) - Creates project structure in the configured storage location
- Validates all required parameters before execution
Return Codes
Section titled “Return Codes”0(SUCCESS): Project initialized successfully1(INVALID): Validation failed or process was aborted