Taiga it's not work

Hi @zavgleb

If you have follow the guide “Taiga 30 min setup”, one of the steps is the super user creation, with the command

 ./taiga-manage.sh createsuperuser

In that step you define her username/password, and it’s by all means a valid user log in into Taiga.

By default it’s not enabled the public registration, but could also allow users to create their own accounts by following what’s described in the guide

You should introduce the following in the docker-compose.yml:

version: "3.5"

x-environment:
  &default-back-environment
  PUBLIC_REGISTER_ENABLED: "True"
  ...
  ...

  taiga-front:
    image: taigaio/taiga-front:latest
    environment:
      PUBLIC_REGISTER_ENABLED: "true"

Just by restarting Taiga you should be able to create new user clicking on the “create your free account here” link.
image