Installation
The Atlas CLI can be installed using Cargo:Available Commands
The Atlas CLI provides three main commands:create
Create a new Atlas Engine project with all necessary files and dependencies.pack
Build and package your Atlas application for distribution on the target platform.run
Build and run your Atlas application locally for testing and development.Configuration File
All Atlas projects include anatlas.toml configuration file that defines project settings and packaging options:
Project Configuration
name- Internal project name used in build configurationapp_name- Display name for the application (optional, defaults toname)
Pack Configuration
icon- Path to application icon file (relative to assets directory)supported_platforms- Comma-separated list of platforms ("all","macos","linux","windows")version- Application version number (optional, defaults to “1.0”)identifier- Bundle identifier for macOS apps (optional, defaults to “example”)
Common Workflows
Platform Support
The Atlas CLI supports building and packaging applications for:- macOS (creates
.appbundles) - Linux (creates executable binaries)
- Windows (creates executable binaries)