Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 482 Bytes

File metadata and controls

30 lines (18 loc) · 482 Bytes

Running the module

# just for the first run
$ source .env 
$ source venv/bin/activate

# everytime
$ PYTHONPATH=src python3 -m application.app

Useful commands

Python and Pip

python3 -m venv myvenv

Output installed packages in requirements format within the requirements.txt file

pip freeze > requirements.txt

Installing requirements.txt packages

pip install -r requirements.txt

Azure

Display user's objectId az ad signed-in-user show --query id