@@ -316,50 +316,60 @@ operating system.
316
316
users in the sample courses.*
317
317
318
318
319
- * **Build without sample submissions**
319
+ * **Build from scratch without sample submissions**
320
320
321
321
If your development work *will not require sample assignment
322
322
submissions or autograding results*, you may prepend
323
323
`NO_SUBMISSIONS=1` to the previous command, which will skip the
324
324
creation of these sample submissions and their autograding and
325
325
decrease the time to complete installation.
326
326
327
+ * On Linux or Intel-based Mac:
328
+ ```
329
+ NO_SUBMISSIONS=1 FROM_SCRATCH=1 vagrant up --provider=virtualbox
330
+ ```
327
331
328
- * On Mac or Linux:
332
+ * On M-series ARM Mac:
329
333
```
330
- NO_SUBMISSIONS=1 vagrant up --provider=...
334
+ NO_SUBMISSIONS=1 vagrant up --provider=qemu
331
335
```
332
336
333
- * Or on Windows using `cmd`:
337
+ * On Windows using `cmd`:
334
338
```
335
339
SET NO_SUBMISSIONS=1
336
- vagrant up --provider=...
340
+ SET FROM_SCRATCH=1
341
+ vagrant up --provider=virtualbox
337
342
```
338
343
339
- Or on Windows using PowerShell, you will have to set the environment variable differently:
344
+ On Windows using PowerShell, you will have to set the environment variables differently:
340
345
```pwsh
341
346
$Env:NO_SUBMISSIONS=1
347
+ $Env:FROM_SCRATCH=1
342
348
vagrant up
343
349
```
344
350
345
- If you want to unset the variable later in `cmd`, you can do:
351
+ If you want to unset the variables later in `cmd`, you can do:
346
352
```
347
353
SET NO_SUBMISSIONS=
354
+ SET FROM_SCRATCH=
348
355
```
349
356
350
357
Or in PowerShell:
351
358
```pwsh
352
359
Remove-Item Env:\NO_SUBMISSIONS
360
+ Remove-Item Env:\FROM_SCRATCH
353
361
```
354
362
355
- Similarly, you can check that the variable is set by doing :
363
+ Similarly, you can check that the variables are set in `cmd` with :
356
364
```
357
365
SET NO_SUBMISSIONS
366
+ SET FROM_SCRATCH
358
367
```
359
368
360
369
Or in PowerShell:
361
370
```pwsh
362
371
$Env:NO_SUBMISSIONS
372
+ $Env:FROM_SCRATCH
363
373
```
364
374
365
375
0 commit comments