-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop-ui' into develop-backend-changes
- Loading branch information
Showing
16 changed files
with
172 additions
and
240 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
djangosk=django-insecure-y&pp1if&0y)pxtmqf_@o1br(&-6mrxv**f5%&73d@d51kscvg! | ||
POSTGRES_PASSWORD=valhub | ||
POSTGRES_USER=valhub | ||
POSTGRES_USER=valhub | ||
admin_username=admin | ||
admin_password=admin | ||
admin_email=[email protected] | ||
DOCKER_HOST_VOLUME_DATA_DIR="<path-to-repository>/<repo-name>/workers/current_evaluation/data" | ||
DOCKER_HOST_VOLUME_RESULTS_DIR="<path-to-repository>/<repo-name>/workers/current_evaluation/results" |
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
Submodule pv-validation-hub-client
updated
38 files
49 changes: 0 additions & 49 deletions
49
s3Emulator/pv-validation-hub-bucket/evaluation_scripts/1/config.json
This file was deleted.
Oops, something went wrong.
144 changes: 0 additions & 144 deletions
144
s3Emulator/pv-validation-hub-bucket/evaluation_scripts/1/file_test_link.csv
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
# Generated by Django 3.2.16 on 2024-07-30 17:50 | ||
|
||
import django.contrib.postgres.fields | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("submissions", "0007_alter_submission_result"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="submission", | ||
name="mae", | ||
), | ||
migrations.AlterField( | ||
model_name="submission", | ||
name="data_requirements", | ||
field=django.contrib.postgres.fields.ArrayField( | ||
base_field=models.CharField(max_length=100), | ||
blank=True, | ||
default=list, | ||
size=None, | ||
), | ||
), | ||
] |
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
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
18 changes: 18 additions & 0 deletions
18
valhub/system_metadata/migrations/0002_alter_systemmetadata_dc_capacity.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,18 @@ | ||
# Generated by Django 3.2.16 on 2024-07-30 17:50 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("system_metadata", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="systemmetadata", | ||
name="dc_capacity", | ||
field=models.FloatField(default=0.0), | ||
), | ||
] |
Oops, something went wrong.