Skip to main content

Create Application (zeysdk create)

Creating an application is the first step in building a ZeyOS application.

zeysdk create <APP_IDENTIFIER> --name=<NAME>

Creates a new ZeyOS application with the following structure:

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

OptionDescriptionRequiredExample
APP_IDENTIFIERUnique app IDmy-first-app
--nameDisplay name--name="My App"
--descriptionApp description--description="Tool for..."
--vendorVendor name--vendor="ACME Inc"
--authorAuthor info--author="John Doe"
--versionVersion number--version=10000