From 5752469ebdddf65b1a6653592a84f44ed97bfb9a Mon Sep 17 00:00:00 2001 From: ddusichka <78527291+ddusichka@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:48:35 -0400 Subject: [PATCH 1/3] make favicon error go away --- backend/internal/service/server.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/internal/service/server.go b/backend/internal/service/server.go index b0f17526..92dd7f5e 100644 --- a/backend/internal/service/server.go +++ b/backend/internal/service/server.go @@ -8,6 +8,7 @@ import ( go_json "github.com/goccy/go-json" "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/compress" + "github.com/gofiber/fiber/v2/middleware/favicon" "github.com/gofiber/fiber/v2/middleware/logger" "github.com/gofiber/fiber/v2/middleware/recover" "github.com/gofiber/fiber/v2/middleware/requestid" @@ -50,6 +51,8 @@ func setupApp() *fiber.App { app.Use(logger.New(logger.Config{ Format: "[${time}] ${ip}:${port} ${pid} ${locals:requestid} ${status} - ${latency} ${method} ${path}\n", })) + app.Use(favicon.New()) + app.Use(compress.New(compress.Config{ Level: compress.LevelBestSpeed, })) From f98e84a9f05bf71b4de0e51a938c70b3d1fcdbf0 Mon Sep 17 00:00:00 2001 From: gaikwadsid <59008111+gaikwadsid@users.noreply.github.com> Date: Thu, 19 Sep 2024 17:20:53 -0400 Subject: [PATCH 2/3] Update pull_request_template.md --- .github/pull_request_template.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 2ddd8afc..6a3ed948 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -2,6 +2,7 @@ ## Description +[Link to Ticket](insert the link to your ticket inside the parenthesis here) ## Issue @@ -12,3 +13,6 @@ ## Screenshots: +- [ ] I have performed a self-review of my code +- [ ] I have commented my code, particularly in hard-to-understand areas +- [ ] Some tests are included that test my code From 09b17a6df80b8c05ada3f78c63ff1258f53952e3 Mon Sep 17 00:00:00 2001 From: gaikwadsid <59008111+gaikwadsid@users.noreply.github.com> Date: Thu, 19 Sep 2024 17:22:18 -0400 Subject: [PATCH 3/3] Update pull_request_template.md --- .github/pull_request_template.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 6a3ed948..d372c058 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -10,9 +10,11 @@ ## How Has This Been Tested? -## Screenshots: - - +## Checklist: - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] Some tests are included that test my code + +## Screenshots: + +