Hello,
My app is fully containerized with docker and I am using the same docker image for development, with a different environment definition.
Currently, I have an entrypoint.sh
script that does the following at container startup
if [[ $ENVIRONMENT == "production" ]]; then
uwsgi --ini uwsgi.ini --show-config
else
python manage.py runserver.py 0.0.0.0:8000
fi
Are there any concerns with using uwsgi to run my django app also in development?
I already tried it out and didn’t notice anything different.
Any feedback on this much appreciated!