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 backend/docker/platform-run
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Django Migrate
python3 manage.py migrate --noinput ||
uv run manage.py migrate --noinput

# Run supervisor
/usr/bin/supervisord -c /etc/supervisor/supervisord.conf
2 changes: 1 addition & 1 deletion backend/docker/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ stdout_logfile_maxbytes=0
autorestart=true

[program:platform]
command=/app/.venv/bin/uwsgi --ini /app/setup.cfg
command=uv run uwsgi --ini /app/setup.cfg
stdout_logfile=/dev/stdout
redirect_stderr=true
stdout_logfile_maxbytes=0
Expand Down
Loading