Activates a project to allow workers to begin consuming tasks. Workers will only process tasks from started projects.
Details
Starting a project sets its status field to TRUE in the database.
Workers check this status before requesting new tasks. If a project is
stopped (status = FALSE), workers will terminate instead of processing tasks.
You must start a project before deploying workers with worker
or worker_slurm.
Examples
if (FALSE) { # \dontrun{
# Not run:
# Start project to enable workers
project_start("simulation_study")
# Deploy workers after starting
worker_slurm("simulation_study", "hpc", fun = my_function)
} # }