### use cadence-setup-schema.nomad for automatic schema setup and update ```sh # submit the parameterized batch job to cluster: nomad job run ./cadence-setup-schema.nomad # run this job (but without any param): nomad job dispatch cadence-setup-schema ``` ### for a simple setup, cadence-server.nomad does it all. ```sh nomad job run ./cadence-server.nomad ``` ### use cadence-web.nomad for web ui service. ```sh nomad job run ./cadence-web.nomad ``` ### run services individually see files 4 to 7 to run each server service component individually. comes handy when you must scale, allocate resources, and/or measure metrics more precisely. individual service jobs can be mixed with cadence-server.nomad on the same cluster without conflict.