Hey guys.. I've deployed a Flet app and set env. variables in Cloudfare dashboard. However they don'
Hey guys.. I've deployed a Flet app and set env. variables in Cloudfare dashboard. However they don't seem to be accessible in runtime. Do I need to do anything special to get them? Just using the following
load_dotenv()
key = os.environ.get('SUPABASE_KEY')
load_dotenv()
Supabase URL and API key from environment variables
url = os.environ.get('SUPABASE_URL')key = os.environ.get('SUPABASE_KEY')


