-
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.
- Loading branch information
Showing
5 changed files
with
48 additions
and
17 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Technology Stack | ||
|
||
This document captures the technology used in this project so that developers can make informed decisions about what kind of tools and career development may be offered by learning and working with this project. | ||
|
||
It also captures the level of support and adoption it enjoys at IdeaCrew. | ||
|
||
1. Javascript Frameworks | ||
1. InertiaJS (Evaluation - Candidate Technology) | ||
2. React (Evaluation - Candidate Technology) | ||
3. Phoenix LiveView (Experimental - Not currently under consideration) | ||
2. Database Technologies | ||
1. SQL (In use - primarily in data analysis at IdeaCrew) | ||
2. Postgres BSON (Experimental - Not currently under consideration) | ||
3. Elixir (Generally Experimental - Not currently under consideration) | ||
1. Phoenix (Experimental - Not currently under consideration) | ||
2. Ecto (Experimental - Not currently under consideration) | ||
3. LiveView (Experimental - Not currently under consideration) | ||
4. Reporting - WKHTMLTOPDF (Currently used in multiple ideacrew projects) | ||
5. Infrastructure Tools | ||
1. Docker (Official IdeaCrew Solution) | ||
2. SBOM, or Software Bills of Material (Evaluation - Candidate technology) |
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
2 changes: 1 addition & 1 deletion
2
lib/sectory_web/controllers/sbom_vulnerability_report_html/mitigation_statement.html.heex
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
34 changes: 22 additions & 12 deletions
34
lib/sectory_web/controllers/sbom_vulnerability_report_html/show.html.heex
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,22 +1,32 @@ | ||
<%= issue_totals %{analysis: @analysis} %> | ||
|
||
<section class="major-section"> | ||
<h1>Critical Issues</h1> | ||
<%= for ci <- critical_issues(@analysis) do %> | ||
<%= vulnerability %{vulnerability: ci} %> | ||
<% critical_issue_set = critical_issues(@analysis) %> | ||
<%= if Enum.count(critical_issue_set) > 0 do %> | ||
<section class="major-section"> | ||
<h1>Critical Issues</h1> | ||
<%= for ci <- critical_issue_set do %> | ||
<%= vulnerability %{vulnerability: ci} %> | ||
<% end %> | ||
</section> | ||
<% end %> | ||
</section> | ||
|
||
<section class="major-section"> | ||
<h1>High Issues</h1> | ||
<%= for hi <- high_issues(@analysis) do %> | ||
<%= vulnerability %{vulnerability: hi} %> | ||
<% high_issue_set = high_issues(@analysis) %> | ||
<%= if Enum.count(high_issue_set) > 0 do %> | ||
<section class="major-section"> | ||
<h1>High Issues</h1> | ||
<%= for hi <- high_issue_set do %> | ||
<%= vulnerability %{vulnerability: hi} %> | ||
<% end %> | ||
</section> | ||
<% end %> | ||
</section> | ||
|
||
<section> | ||
<h1>Applicable Mitigation Statements</h1> | ||
<%= for ms <- @analysis.mitigations do %> | ||
<%= mitigation_statement %{mitigation: ms} %> | ||
<%= if Enum.count(@analysis.mitigations) > 0 do %> | ||
<%= for ms <- @analysis.mitigations do %> | ||
<%= mitigation_statement %{mitigation: ms} %> | ||
<% end %> | ||
<%= else %> | ||
<p>No mitigation statements provided.</p> | ||
<% end %> | ||
</section> |
2 changes: 1 addition & 1 deletion
2
lib/sectory_web/controllers/sbom_vulnerability_report_html/vulnerability.html.heex
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