Post #2000667
2026-04-18 08:17 UTC
@pauleveritt @django @judy2k
Think I see the issue now - I need `compose up` without the specific target service that pycharm adds.
From the bash script, we start with `docker compose --profile up` and it brings up nginx, react and python.
Pycharm targets runserver, my nginx service depends on my runserver and react services, so I can't depend on it from nginx.
https://youtu.be/320K2ULPq6s
Replies (1)
-
@markwalker@fosstodon.org 2026-04-18 17:10
@pauleveritt @django @judy2k I think I cracked it. Added a docker compose run configuration and there you don't have to specify a service! I was defaulting to the old days where I would add a compose interpreter and specify the python container. Those projects would run django templates and not use nginx locally. I'll have to tweak things a bit still I think but I've got a running dev stack through pycharm! Don't think debug was available though and that's the best feature!