You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thank you for your hard work. It's really great and well done. However, I'm facing some issues when trying to run it via Docker. I can't see any providers on the list, and when I attempt to fetch data using Postman, I receive an empty response. Additionally, in order to make this repository work, I had to modify the docker/Dockerfile.django as follows:
FROM python:latest
RUN apt update && apt -y install git
RUN git clone --depth=1 --branch v1.0.0 https://github.com/peppelinux/spid-cie-oidc-django && \
cd spid-cie-oidc-django && \
pip install --upgrade pip && \
pip install -e . && \
pip install design-django-theme && \
pip install tzdata
RUN cd spid-cie-oidc-django/examples/federation_authority && cp federation_authority/settingslocal.py.example federation_authority/settingslocal.py
RUN cd spid-cie-oidc-django/examples/federation_authority && python3 ./manage.py migrate
RUN cd spid-cie-oidc-django/examples/federation_authority && python3 ./manage.py loaddata dumps/example.json
ENTRYPOINT python3 spid-cie-oidc-django/examples/federation_authority/manage.py runserver 0.0.0.0:8000
I followed the provided instructions, but I'm still receiving empty responses. Could you please assist me in resolving this issue?
The text was updated successfully, but these errors were encountered:
Hi, thank you for your hard work. It's really great and well done. However, I'm facing some issues when trying to run it via Docker. I can't see any providers on the list, and when I attempt to fetch data using Postman, I receive an empty response. Additionally, in order to make this repository work, I had to modify the
docker/Dockerfile.django
as follows:I followed the provided instructions, but I'm still receiving empty responses. Could you please assist me in resolving this issue?
The text was updated successfully, but these errors were encountered: