Skip to main content

Documentation Index

Fetch the complete documentation index at: https://vercel.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Azul is driven entirely from the terminal using the azul command and its subcommands. Every flag accepts either a space-separated value (--flag value) or an equals-separated value (--flag=value). Optional arguments are shown in brackets — for example, [PATH] — and short aliases are available where noted.
Run azul --help at any time to print usage information. Add --help after any subcommand (e.g., azul push --help) to see that command’s options.

azul

Running azul on its own starts the live sync daemon. The daemon connects to Roblox Studio via the companion plugin and mirrors your DataModel to disk in real time.
azul [command] [options]

Global options

The following options are accepted by azul and can also be combined with any subcommand.
OptionShortDescription
--help-hPrint help text and exit
--versionPrint the installed Azul version and exit
--debugEnable verbose debug logs
--no-warnSkip confirmation prompts
--sync-dir [PATH]Override the sync directory
--port [NUMBER]Override the daemon port
azul --sync-dir ./sync --port 8080

azul build

azul build performs a one-time push from your local filesystem into Roblox Studio. Use it to seed Studio from local files without starting continuous sync.
azul build [options]
OptionDescription
--from-sourcemap [FILE]Build from sourcemap data instead of the filesystem
--rojoEnable Rojo-compatible parsing for your project structure
--rojo-project [FILE]Override the Rojo project file path (default: default.project.json)
azul build
If you’re migrating an existing Rojo project into Studio, use --rojo together with --rojo-project to point Azul at your project file.

azul push

azul push selectively pushes a local folder to a specific location in the Studio DataModel. Unlike azul build, which processes your entire project, push targets a single source-to-destination mapping.
azul push [options]
OptionShortDescription
--source [DIR]-sLocal source folder to push
--destination [PATH]-dStudio destination path (e.g., ReplicatedStorage.Packages)
--from-sourcemap [FILE]Push from sourcemap data instead of the filesystem
--destructiveWipe all children at the destination before pushing
--no-place-configIgnore place config path mappings
--rojoEnable Rojo-compatible parsing
--rojo-project [FILE]Override the Rojo project file path
azul push -s Packages -d ReplicatedStorage.Packages
--destructive deletes all existing children at the destination before writing. This cannot be undone from within Azul — make sure your local files are the source of truth before using this flag.

azul pack

azul pack serializes Studio instance properties into a sourcemap.json file for hermetic, reproducible builds. The output is compatible with tools like Luau LSP.
azul pack [options]
OptionShortDescription
--output [FILE]-oOutput path for the generated sourcemap
--scripts-onlySerialize only scripts and their descendants
azul pack

azul config

azul config opens the Azul configuration file in your default editor. Use --path if you want to locate the file without opening it.
azul config [options]
OptionDescription
--pathPrint the config file path and exit without opening it
azul config
Use azul config --path to find the config file and open it manually, pipe it to another tool, or check it into version control.