kutt icon indicating copy to clipboard operation
kutt copied to clipboard

sitename isn't reflected in UI

Open ralyodio opened this issue 4 years ago • 2 comments

still says "Kutt" everywhere.

ralyodio avatar Dec 07 '20 09:12 ralyodio

  1. Which version are you using?
  2. Are you using Docker?
  3. Where exactly do you see Kutt? The text for logo?

poeti8 avatar Dec 14 '20 17:12 poeti8

I had a similar issue and just now found the solution.

I am hosting everything with docker-compose files and was using

    env_file:
      - production.env

This loaded most of the settings into the global environment.

Though it would still not show the Name, URL or Email.

Now I tried adding

    volumes:
      - ./production.env:/usr/src/app/.env:ro

And after a container recreation with docker-compose up -d it fully works now.

So this seems to be an issue that some settings are not being pulled from the global environment but only from the .env file in the application root.

AtjonTV avatar Jun 12 '21 18:06 AtjonTV