You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-6Lines changed: 0 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,12 +35,6 @@ You can also log in as a product owner / non-staff user:
35
35
36
36
For additional documentation you can visit our [Read the Docs site](https://defectdojo.readthedocs.io/).
37
37
38
-
# One-Click Installations
39
-
40
-
Deploy to Docker Cloud. (__Login first to Docker Cloud before clicking the install button.__)
41
-
42
-
[](https://cloud.docker.com/stack/deploy/?repo=https://github.com/aaronweaver/docker-DefectDojo)
43
-
44
38
# Installation Options
45
39
46
40
### [Debian, Ubuntu (16.04.2+) or RHEL-based Install Script](https://defectdojo.readthedocs.io/en/latest/getting-started.html#install-script)
Copy file name to clipboardExpand all lines: dojo/fixtures/system_settings.json
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,13 @@
7
7
"enable_jira": false,
8
8
"s_finding_severity_naming": false,
9
9
"url_prefix": "",
10
-
"time_zone": "UTC"
10
+
"time_zone": "UTC",
11
+
"product_grade": "def grade_product(crit, high, med, low):\r\n health=100\r\n if crit > 0:\r\n health = 40\r\n health = health - ((crit - 1) * 5)\r\n if high > 0:\r\n if health == 100:\r\n health = 60\r\n health = health - ((high - 1) * 3)\r\n if med > 0:\r\n if health == 100:\r\n health = 80\r\n health = health - ((med - 1) * 2)\r\n if low > 0:\r\n if health == 100:\r\n health = 95\r\n health = health - low\r\n\r\n if health < 5:\r\n health = 5\r\n\r\n return health",
url_prefix=models.CharField(max_length=300, default='', blank=True, help_text="URL prefix if DefectDojo is installed in it's own virtual subdirectory.")
display_endpoint_uri=models.BooleanField(default=False, verbose_name="Display Endpoint Full URI", help_text="Displays the full endpoint URI in the endpoint view.")
108
+
enable_product_grade=models.BooleanField(default=False, verbose_name="Enable Product Grading", help_text="Displays a grade letter next to a product to show the overall health.")
block_execution=models.BooleanField(default=False, help_text="Instead of async deduping a finding the findings will be deduped synchronously and will 'block' the user until completion.")
158
175
159
176
160
177
classContact(models.Model):
@@ -260,8 +277,8 @@ class Product(models.Model):
260
277
They remain in model for backwards compatibility and will be removed
261
278
in a future release. prod_manager, tech_contact, manager
262
279
263
-
The admin script migrate_product_contacts should be used to migrate data
264
-
from these fields to their replacements.
280
+
The admin script migrate_product_contacts should be used to migrate data
0 commit comments