Skip to content

Commit

Permalink
Replace deprecated problem_storage_root with problem_storage_globs
Browse files Browse the repository at this point in the history
  • Loading branch information
kiritofeng committed Jul 10, 2023
1 parent 49aa244 commit 15ce3a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/judge/setting_up_a_judge.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,14 @@ $ pip3 install dmoj

Start by taking the `runtime` block from the output of the command
`dmoj-autoconf` and put it in a new file `judge.yml`. Next, add a
`problem_storage_root` node where you specify where your problem data is
`problem_storage_globs` node where you specify where your problem data is
located. Your `judge.yml` file should look something like below.

```yaml
id: <judge name>
key: <judge authentication key>
problem_storage_root:
- /mnt/problems
problem_storage_globs:
- /mnt/problems/*
runtime:
...
```
Expand Down

0 comments on commit 15ce3a0

Please sign in to comment.