Environment How To's
Running long jobs
With Brev, you can run long jobs by prepending brev bg
to your long-running command. This will disable our SSH-based autostop and simply shut down your instance once the command finishes.
brev bg <YOUR_COMMAND> --stop
Adding the --stop flag ensures the machine will stop after the command finishes.
If you just want to run something in the background, you can do that too:
brev bg <YOUR_COMMAND>