No setup page, no default user and register button does nothing
Describe the bug
Following git clone https://github.com/JordanKnott/taskcafe && cd taskcafe and then docker-compose -p taskcafe up -d the container starts successfully, but there is no default user, register button does nothing and there is no setup page. The whole thing is ready to go.
Expected behavior To be able to have a default user, or at the very least a setup page where I can create the default user.
Screenshots / Live demo link

Anybody??
did you try this? https://github.com/JordanKnott/taskcafe/issues/141#issuecomment-1041023938
same to me
did you try this? #141 (comment)
thank you for your information, this can direct to register page and create a new account.
Same for me too, same workaround of going to /register.
+1 here. Does not work out of the box, stuck at the login/register screen.
version: "3"
services:
web:
image: taskcafe/taskcafe:latest
# build: .
ports:
- "3333:3333"
depends_on:
- postgres
networks:
- taskcafe-test
environment:
TASKCAFE_DATABASE_HOST: postgres
TASKCAFE_MIGRATE: "true"
volumes:
- taskcafe-uploads:/root/uploads
postgres:
image: postgres:12.3-alpine
restart: always
networks:
- taskcafe-test
environment:
POSTGRES_USER: taskcafe
POSTGRES_PASSWORD: taskcafe_test
POSTGRES_DB: taskcafe
volumes:
- taskcafe-postgres:/var/lib/postgresql/data
migrate:
build: .
entrypoint: ./taskcafe migrate
volumes:
- ./migrations:/root/migrations
depends_on:
- postgres
networks:
- taskcafe-test
volumes:
taskcafe-postgres:
external: false
taskcafe-uploads:
external: false
networks:
taskcafe-test:
driver: bridge
i change docker-compose.yml to this, and work , then i regist