Flask - Deployment
You wrote this code:
But it always prints
import os
secret_key = os.getenv('SECRET_KEY')
print(secret_key)But it always prints
None even though you set the environment variable. What is the likely problem?