We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c9bb4 commit f6124e8Copy full SHA for f6124e8
python/products.py
@@ -13,8 +13,10 @@
13
apimServiceName = os.getenv('apimServiceName')
14
tenantId = os.getenv('tenantId')
15
subscriptionId = os.getenv('subscriptionId')
16
-product_id = os.getenv('PRODUCT_ID')
17
-product_name = os.getenv('PRODUCT_NAME')
+
+# Define product_id and product_name directly in the code
18
+product_id = 'GithubProduct'
19
+product_name = 'Github Product'
20
21
# Print the environment variables to debug
22
print(f"clientId: {clientId}")
0 commit comments