Skip to main content
Once you’ve got the basic sync loop working, Azul gives you several ways to codify project behavior so your whole team stays consistent and common push operations require no manual flags. This page covers the features that matter most in larger or more structured projects.

Per-place daemon configuration

You can store daemon overrides inside your Roblox place as a ModuleScript, so every collaborator gets project-specific behavior automatically when they connect — no CLI flags or local config files required.
1

Create the config script in Studio

In Roblox Studio, navigate to ServerStorage, create a folder named Azul, and inside it create a ModuleScript named Config.The full path should be: ServerStorage > Azul > Config
2

Return a configuration table

The script must return a plain Lua table. The daemon reads this table when the plugin connects.
3

Save and commit the place file

Save the place. Teammates who open it will automatically receive these settings the next time they connect.

Config options reference

Only the options you specify are overridden. Any option you omit falls back to the CLI-level default or the daemon’s built-in default.

Rojo compatibility mode

Azul works without a project file by default, but if you’re importing from an existing Rojo-based folder structure, you can enable Rojo compatibility with the --rojo flag. Use --rojo with azul build to perform a full push using the Rojo project file:
Use --rojo with azul push for a targeted push of a specific folder:
In Rojo mode, Azul reads default.project.json (or the path you provide with --rojo-project) to interpret the folder structure before pushing instances into Studio.
You don’t need --rojo for normal sync sessions. Use it only when the folder you’re pushing was created by or for a Rojo-based workflow — such as a Wally Packages directory.

Package management with Wally

Wally produces a Packages folder with a Rojo-style layout. Use azul push to import those packages directly into ReplicatedStorage.Packages in Studio:
  • -s Packages — the local Packages folder produced by Wally
  • -d ReplicatedStorage.Packages — the destination in Studio
  • --destructive — removes stale packages in the destination that are no longer present locally
  • --rojo — required because Wally uses Rojo-style folder conventions
The --destructive flag deletes any instances in the destination that don’t have a matching local file. Make sure the destination path is correct before running it for the first time.

Automating package pushes

If you run the Wally push command regularly, add it as a pushMappings entry in your per-place config. This lets you run plain azul push without repeating the flags each time.
1

Open your per-place config

Open ServerStorage > Azul > Config in Studio.
2

Add a pushMappings entry

Add an entry to the pushMappings table that matches your azul push command:
3

Run azul push without flags

After saving and reconnecting, run:
Azul reads the pushMappings from the per-place config and executes all defined mappings automatically.
You can define multiple entries in pushMappings to handle several folders in one command — for example, both a Packages folder and a src/Server folder.