Anybuild documentation
Developing Locally
Build, start, and invoke named project commands from your workstation.
Build and start
Terminal
anybuild . --startThis generates the definition when missing, builds the project, and invokes the plan's start command.
Run phases separately
Terminal
anybuild build .anybuild run . --startNamed commands
A Serve plan can define commands such as start, after_deploy, or project-specific names.
Terminal
anybuild run . --command prepare-dbanybuild run . -c warm-cache --startPorts and volumes
Terminal
anybuild . --start --serve-port 3000anybuild run . --start --volume uploads:/app/uploadsThe run command receives PORT. If --serve-port is absent, Anybuild uses the process PORT and then defaults to 8080.