Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/d00d7ac1ddacc1b913356ceeca28c89c596e63ee
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
14 additions and
2 deletions
@ -9,6 +9,11 @@
> < strong > {{ product2.name }}< / strong >
< / h1 >
< / div >
@if (product2.isArchived) {
< div class = "info-container my-4 p-2 rounded text-center text-muted" >
< ng-container i18n > This page has been archived.< / ng-container >
< / div >
}
< section class = "mb-4" >
< p i18n >
Are you looking for an open source alternative to
@ -11,7 +11,8 @@
}
}
. call-to-action {
. call-to-action ,
. info-container {
background-color : rgba ( var ( -- palette-foreground-text ) , 0 .02 ) ;
}
}
@ -19,7 +20,8 @@
: host-context ( . theme-dark ) {
color : rgb ( var ( -- light - primary-text )) ;
. call-to-action {
. call-to-action ,
. info-container {
background-color : rgba ( var ( -- palette-foreground-text-dark ) , 0 .02 ) ;
}
}
@ -3,6 +3,7 @@ export interface Product {
founded? : number ;
hasFreePlan? : boolean ;
hasSelfHostingAbility? : boolean ;
isArchived? : boolean ;
isOpenSource? : boolean ;
key : string ;
languages? : string [ ] ;
@ -369,6 +369,7 @@ export const personalFinanceTools: Product[] = [
{
founded : 2021 ,
hasSelfHostingAbility : false ,
isArchived : true ,
key : 'maybe-finance' ,
languages : [ 'English' ] ,
name : 'Maybe Finance' ,
@ -678,10 +679,13 @@ export const personalFinanceTools: Product[] = [
slogan : 'Make Smarter Investments'
} ,
{
founded : 2024 ,
hasSelfHostingAbility : true ,
isArchived : true ,
key : 'wealthfolio' ,
languages : [ 'English' ] ,
name : 'Wealthfolio' ,
origin : 'Canada' ,
slogan : 'Desktop Investment Tracker'
} ,
{