-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff92617
commit c272079
Showing
16 changed files
with
487 additions
and
388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FROM redis:6.2.6-alpine3.14 | ||
FROM redis:6.2.6-alpine3.15 | ||
COPY redis.conf /usr/local/etc/redis/redis.conf | ||
CMD ["redis-server", "/usr/local/etc/redis/redis.conf" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
judge/migrations/0007_alter_annotator_current_alter_annotator_ignore_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Generated by Django 4.0 on 2021-12-12 23:49 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("judge", "0006_auto_20211114_2300"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="annotator", | ||
name="current", | ||
field=models.ForeignKey( | ||
blank=True, | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="%(class)s_current", | ||
to="judge.project", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="annotator", | ||
name="ignore", | ||
field=models.ManyToManyField( | ||
related_name="%(class)s_ignore", to="judge.Project" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="annotator", | ||
name="prev", | ||
field=models.ForeignKey( | ||
blank=True, | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="%(class)s_prev", | ||
to="judge.project", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="annotator", | ||
name="viewed", | ||
field=models.ManyToManyField( | ||
related_name="%(class)s_viewed", to="judge.Project" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="decision", | ||
name="loser", | ||
field=models.ForeignKey( | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="%(class)s_loser", | ||
to="judge.project", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="decision", | ||
name="winner", | ||
field=models.ForeignKey( | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="%(class)s_winner", | ||
to="judge.project", | ||
), | ||
), | ||
] |
Oops, something went wrong.