From 68a198cc91150a4350ed727b504b6a1dd3d06029 Mon Sep 17 00:00:00 2001 From: Nick Guy Date: Mon, 10 Jun 2024 18:00:16 +0100 Subject: [PATCH] Add environment dump --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 5db9d18..530a0b0 100644 --- a/app.py +++ b/app.py @@ -10,5 +10,6 @@ def hello_world(): # put application's code here if __name__ == '__main__': - print(os.environ) + for key, value in os.environ.items(): + print(f'{key}: {value}') app.run()