Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/tangara-fw/blame/commit/f212c1f02fdb039d9b176a68df1427a1d0d6fc0a/tools/cmake/common.cmake
You should set ROOT_URL correctly, otherwise the web may not work correctly.
Fork of Tangara with customizations
# For more information about build system see
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
set ( CMAKE_CXX_STANDARD 17 )
set ( CMAKE_CXX_STANDARD_REQUIRED ON )
# Build only the subset of components that we actually depend on.
set ( COMPONENTS "" )
# External dependencies
list ( APPEND EXTRA_COMPONENT_DIRS "$ENV{PROJ_PATH}/lib/result" )
list ( APPEND EXTRA_COMPONENT_DIRS "$ENV{PROJ_PATH}/lib/lvgl" )
list ( APPEND EXTRA_COMPONENT_DIRS "$ENV{PROJ_PATH}/lib/catch2" )
include ( $ENV{ IDF_PATH } /tools/cmake/project.cmake )
# Additional warnings used when compiling our components.
# Unable to be used due to issues in ESP-IDF includes are: -Wpedantic
# -Wuseless-cast -Wconversion -Wold-style-cast -Wsign-conversion -Wcast-align
set ( EXTRA_WARNINGS "-Wshadow" "-Wnon-virtual-dtor" "-Wunused"
" - W o v e r l o a d e d - v i r t u a l " " - W m i s l e a d i n g - i n d e n t a t i o n " " - W d u p l i c a t e d - c o n d "
" - W d u p l i c a t e d - b r a n c h e s " " - W l o g i c a l - o p " " - W n u l l - d e r e f e r e n c e "
" - W d o u b l e - p r o m o t i o n " " - W f o r m a t = 2 " " - W i m p l i c i t - f a l l t h r o u g h " )
# Extra build flags that should apply to the entire build. This should mostly
# just be used to setting flags that our external dependencies requires.
# Otherwise, prefer adding per-component build flags to keep things neat.
idf_build_set_property ( COMPILE_OPTIONS "-DLV_CONF_INCLUDE_SIMPLE" APPEND )
include ( $ENV{ PROJ_PATH } /tools/cmake/extra-libs.cmake )