Skip to main content

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

OptionDescriptionRequiredExample
APP_IDENTIFIERUnique app IDYesmy-first-app
--nameDisplay nameYes--name="My App"
--descriptionApp descriptionNo--description="Tool for..."
--vendorVendor nameNo--vendor="ACME Inc"
--authorAuthor infoNo--author="John Doe"
--versionVersion numberNo--version=10000