I'm sorry if it's a trivial question, but couldn't find an answer for.
I'm really new to python and decided to use pycharm because I used to work with intellij in my previous job (Java).
Well, I wanna debug the code in pycharm, and in order to debug a project without providing any parameter it was just straight forward, just double click on the python file and choose debug...
The thing is, in order to run the project that I'm working on I have to run the following code on terminal
clear; clientid=d57f00e-8a58-c9e647144947 clientsecret="gGO1XjHly/NQZZvTTWET=" keyvaultidentifier=ty-keyvault tenant=9091f191-4969-4532-82ba-f9a96db6f8a6 environment=dev python3 -m testing_server
My question would be: How can I make this command a running command where I can debug the code on pycharm?
I found an option Run > Edit configuration > Python, but somehow didn't really understood what to place where
Any tips? Sorry for the trivial question, it just it's taking too long to do something so simple.
Cheers.


