Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ EXPOSE 8000
# Make entrypoint script executable
RUN chmod +x /code/docker-entrypoint.sh

ENTRYPOINT ["/code/docker-entrypoint.sh"]
ENTRYPOINT ["bash","/code/docker-entrypoint.sh"]
CMD ["uvicorn", "DataSpace.asgi:application", "--host", "0.0.0.0", "--port", "8000"]
Empty file modified api/migrations/0001_initial.py
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.9"

services:
backend:
build: .
Expand Down
13 changes: 7 additions & 6 deletions otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ processors:
batch:

exporters:
logging:
loglevel: warn
# 'logging' is replaced by 'debug'
debug:
verbosity: normal # 'normal' is equivalent to the old 'info'/'warn' levels
otlp/elastic:
endpoint: "apm-server:8200"
tls:
Expand All @@ -26,9 +27,9 @@ service:
pipelines:
traces:
receivers: [otlp]
exporters: [logging, otlp/elastic]
processors: [batch]
processors: [memory_limiter, batch] # Added memory_limiter to the pipeline
exporters: [debug, otlp/elastic]
metrics:
receivers: [otlp]
exporters: [logging, otlp/elastic]
processors: [batch]
processors: [memory_limiter, batch] # Added memory_limiter to the pipeline
exporters: [debug, otlp/elastic]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ django-stubs==4.2.7
djangorestframework-stubs==3.14.5

#whitenoise for managing static files
whitenoise==6.9.0
whitenoise==6.9.0

# Activity stream for tracking user actions
django-activity-stream==2.0.0
Expand Down
Loading