Create Application
Creating an application is the first step in building a ZeyOS application.
Bash
zeysdk create <APP_IDENTIFIER> --name=<NAME>
Creates a new ZeyOS application with the following structure:
Text
my-app/
├── .zeysdk/ # Sync and instance configuration
│ ├── sync.json
│ └── sync.instance.json
├── resources/ # Static assets
├── services/ # Background tasks
├── settings/ # App configuration
│ ├── defaultsettings.json
│ └── settings.json
├── weblets/ # UI components
└── zeyos.app.json # App manifest
Options Reference
| Option | Description | Required | Example |
|---|---|---|---|
APP_IDENTIFIER | Unique app ID | Yes | my-first-app |
--name | Display name | Yes | --name="My App" |
--description | App description | No | --description="Tool for..." |
--vendor | Vendor name | No | --vendor="ACME Inc" |
--author | Author info | No | --author="John Doe" |
--version | Version number | No | --version=10000 |