Fresh install on debian12

hi i’ve just tried to install vikunja on a new installed debian
I have to precise: there is no internet connection for this server!

i’ve done :

dpkg -i vikunja.deb

I let everything in /etc/vikunja/config.yml as it , by default
Started vikunja : systemctl start vikunja

Seen in log : http server started [::]:3456

on my browser: i go to http://localhost:3456 : i have a empty page greyed
What have i missed?

I’ve also tried with docker:

version: ‘3.8’

services:
db:
image: postgres:latest
environment:
POSTGRES_PASSWORD: changeme
POSTGRES_USER: vikunja
POSTGRES_DB: vikunja
volumes:
- ./db:/var/lib/postgresql/data
restart: unless-stopped
healthcheck:
test: [“CMD-SHELL”, “pg_isready -h localhost -U $$POSTGRES_USER”]
interval: 10s
timeout: 5s
retries: 5
start_period: 30s

vikunja:
image: vikunja/vikunja
environment:
VIKUNJA_SERVICE_PUBLICURL: http://
VIKUNJA_DATABASE_HOST: db
VIKUNJA_DATABASE_PASSWORD: changeme
VIKUNJA_DATABASE_TYPE: postgres
VIKUNJA_DATABASE_USER: vikunja
VIKUNJA_DATABASE_DATABASE: vikunja
VIKUNJA_SERVICE_JWTSECRET:
ports:
- 3456:3456
volumes:
- ./files:/app/vikunja/files
depends_on:
db:
condition: service_healthy
restart: unless-stopped

Same result!

please help me.

Seen in developpers tools:

vue-router.mjs:3578 TypeError: Object.fromEntries is not a function
at omitBy (utils.ts:27)
at UserSettingsModel.assignData (abstractModel.ts:21)
at new UserSettingsModel (userSettings.ts:28)
at defineStore (auth.ts:48)
at EffectScope.run (reactivity.esm-bundler.js:43)
at ie._e.run (pinia.mjs:1450)
at EffectScope.run (reactivity.esm-bundler.js:43)
at We (pinia.mjs:1450)
at runWithContext (runtime-core.esm-bundler.js:2692)
at createSetupStore (pinia.mjs:1448)

What i have missed?

Docker user here; back when I had limited internet access at my homelab, I would use either IP:port or 0.0.0.0:port to connect to my containers, I am unsure of what the result would be in your case.

Edit: I would also change line 178 to DEBUG in your config, then check your logs. When I was troubleshooting a migration integration early on I also changed my line 190 to DEBUG.

found and understood… installed in a Debian 12 but my client is an old Debian 9 with an old browser… that’s why!