Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/c10cdc6c50ab5eec019b71272278aff311f920c1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
5 deletions
@ -202,11 +202,14 @@ function doSetup() {
. then ( ( ) => {
// Make sure auth.json exists and generate the first key
let users = { } ;
users [ token ( ) ] = { username : 'ass' , count : 0 } ;
fs . writeJsonSync ( path ( 'auth.json' ) , { users } , { spaces : 4 } ) ;
log . debug ( 'File created' , 'auth.json' )
. success ( '!! Important' , ` Save this token in a secure spot: ${ Object . keys ( users ) [ 0 ] } ` )
if ( ! fs . existsSync ( path ( 'auth.json' ) ) ) {
let users = { } ;
users [ token ( ) ] = { username : 'ass' , count : 0 } ;
fs . writeJsonSync ( path ( 'auth.json' ) , { users } , { spaces : 4 } ) ;
log . debug ( 'File created' , 'auth.json' )
. success ( '!! Important' , ` Save this token in a secure spot: ${ Object . keys ( users ) [ 0 ] } ` )
. blank ( ) ;
}
let existingData = { }
try {