taskcafe icon indicating copy to clipboard operation
taskcafe copied to clipboard

No setup page, no default user and register button does nothing

Open Unrepentant-Atheist opened this issue 3 years ago • 8 comments

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 image

Unrepentant-Atheist avatar Mar 28 '22 07:03 Unrepentant-Atheist

Anybody??

Unrepentant-Atheist avatar Apr 08 '22 08:04 Unrepentant-Atheist

did you try this? https://github.com/JordanKnott/taskcafe/issues/141#issuecomment-1041023938

chris-ti-an-g avatar Apr 11 '22 07:04 chris-ti-an-g

same to me

kenbai avatar Apr 22 '22 09:04 kenbai

did you try this? #141 (comment)

thank you for your information, this can direct to register page and create a new account.

Ioridy avatar May 11 '22 02:05 Ioridy

Same for me too, same workaround of going to /register.

boomam avatar Jul 17 '22 19:07 boomam

+1 here. Does not work out of the box, stuck at the login/register screen.

mbetrifork avatar Sep 15 '23 12:09 mbetrifork

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

Polluxe avatar Sep 18 '23 08:09 Polluxe