Spaces:
Runtime error
Runtime error
Add Composio debug logging and verify lock directory permissions
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -21,4 +21,7 @@ ENV COMPOSIO_LOCK_DIR=/app/.composio/locks
|
|
21 |
RUN echo "GOOGLE_API_KEY is: $GOOGLE_API_KEY" > /app/env_debug.txt
|
22 |
RUN echo "COMPOSIO_API_KEY is: $COMPOSIO_API_KEY" >> /app/env_debug.txt
|
23 |
|
|
|
|
|
|
|
24 |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
21 |
RUN echo "GOOGLE_API_KEY is: $GOOGLE_API_KEY" > /app/env_debug.txt
|
22 |
RUN echo "COMPOSIO_API_KEY is: $COMPOSIO_API_KEY" >> /app/env_debug.txt
|
23 |
|
24 |
+
# Enable Composio debug logging
|
25 |
+
ENV COMPOSIO_LOGGING_LEVEL=debug
|
26 |
+
|
27 |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|