Edgars
Edgars
Ah, yes indeed! Seems that Weblate could be adding empty strings as translations for newly added languages, although it is a bit strange that few interface elements have text in...
Database migrations are (somewhat) documented in Advanced Alchemy documentation: [Database Migrations](https://docs.advanced-alchemy.litestar.dev/latest/usage/frameworks/litestar.html#database-migrations) and [Command Line Tool](https://docs.advanced-alchemy.litestar.dev/latest/usage/cli.html) (`litestar database` seems to be a wrapper for the Advanced Alchemy command line tool `alchemy`)....
As I understand `PASSWORD_HASH` is not yet available in production images, currently only in `nightly` and `development`, therefore the user interface is not asking for password. > Important > Make...
> thanks for that, makes sense now. Thought since the readme etc stating all this stuff that it's now in affect since the version 13 being updated. Yes, that is...
> You do know you can just put `PASSWORD_HASH` into your env file? The env file's contents are loaded as environmental variables just as if you did environment: ... Just...
@sergioalegre, most probably the hashed value contains `$`. Did you escape all occurrences of `$` with `$$` in your Compose file (for more details look above at https://github.com/wg-easy/wg-easy/issues/1191#issuecomment-2232408755)?
That is because you are using image tag that does not have (yet) this functionality. Try `nightly`.
`docker run ghcr.io/wg-easy/wg-easy:nightly wgpw` If tag is not specified, `latest` is implied, and currently the `latest` tag does not yet have the functionality you are trying to use.
Did you run container with the image of same tag? Did you run container with `docker run` or with Compose file? I suspect that the culprit is that the password...
> This is docker stuff. Once you create a docker container via compose, you can not alter its configuration via `docker-compose.yml` (eg. after stopping it). You have to `docker compose...