Hi,
I’ve deployed Label Studio in Google Cloud Run. Every time I loggin into my account my projects and configuration is missing. I’m trying now to change YAML file in order to setup optional setting as follow:
env:
- name: DISABLE_SIGNUP_WITHOUT_LINK
value: ‘1’
- name: USERNAME
value: XXXXX
- name: PASSWORD
value: ‘XXXX’
- name: CSRF_TRUSTED_ORIGINS
value: ‘*’
- name: USE_ENFORCE_CSRF_CHECKS
value: ‘0’
- name: POSTGRE_NAME
value: postgres
- name: POSTGRE_USER
value: YYYYY
- name: POSTGRE_PASSWORD
value: ‘YYYYYY’
- name: POSTGRE_PORT
value: ‘5432’
- name: POSTGRE_HOST
value: localhost
- name: DJANGO_DB
value: default
- name: STORAGE_PERSISTENCE
value: ‘1’
I’ve tried changing the port (from 8080 to 8081) but got same error:
The user-provided container failed to start and listen on the port defined provided by the PORT=8081 environment variable within the allocated timeout. This can happen when the container port is misconfigured or if the timeout is too short. The health check timeout can be extended. Logs for this revision might contain more information.
Any hint? Were can I find more documentation regarding to cloud deploy procedure?
BR