restore composer.json, add mysqli extension
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m54s
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m54s
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "Installing setuptools for Celery..."
|
||||
/opt/venv/bin/python -m pip install setuptools
|
||||
|
||||
celery -A config worker --loglevel=info &
|
||||
|
||||
sleep 10 && celery -A config beat --loglevel=info &
|
||||
|
||||
@@ -1,13 +1,10 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
python3 manage.py collectstatic --no-input &
|
||||
python3 manage.py migrate --no-input &
|
||||
python3 manage.py runserver 0.0.0.0:8000 &
|
||||
echo "Installing setuptools..."
|
||||
/opt/venv/bin/python -m pip install setuptools > /dev/null 2>&1
|
||||
|
||||
celery -A config worker --loglevel=info &
|
||||
|
||||
sleep 10 && celery -A config beat --loglevel=info &
|
||||
sleep 10 && celery -A config flower --loglevel=info &
|
||||
python3 manage.py collectstatic --no-input
|
||||
python3 manage.py migrate --no-input
|
||||
|
||||
gunicorn config.wsgi:application --bind 0.0.0.0:8000
|
||||
|
||||
|
||||
Reference in New Issue
Block a user