Add environment dump

This commit is contained in:
Nick Guy 2024-06-10 18:00:16 +01:00
parent 1db59ad3d6
commit 68a198cc91

3
app.py
View file

@ -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()