You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printWarn "DT_ENVIRONMENT is already set to $DT_ENVIRONMENT. This function will override the DT_ENVIRONMENT environment variable and the entry in the $ENV_FILE file."
353
+
printWarn "You should be careful if you have other variables needed for that environment such as API Tokens."
353
354
printf"Do you want to override it? (y/n): "
354
355
read override
355
356
if [ "$override"!="y" ] && [ "$override"!="Y" ];then
@@ -362,7 +363,8 @@ selectDemoEnvironment(){
362
363
printInfo "1. playground (wkf10640)"
363
364
printInfo "2. demo.live (guu84124)"
364
365
printInfo "3. tacocorp (bwm98081)"
365
-
printf"Enter your choice (1-3): "
366
+
printInfo "4. other, you'll be prompted to enter the full URL (Prod/Sprint/Dev)"
printf"Enter in the format eg. https://abc123.apps.dynatrace.com or for sprint -> https://abc123.sprint.apps.dynatracelabs.com\nURL to your Dynatrace Platform:"
381
+
read -r DT_ENVIRONMENT
382
+
# Basic validation to ensure it starts with https://
383
+
if [[ !"$DT_ENVIRONMENT"=~ ^https:// ]];then
384
+
printWarn "URL should start with 'https://'. Please try again."
385
+
return 1
386
+
fi
387
+
;;
377
388
*)
378
389
printWarn "Invalid choice. Defaulting to playground."
This is an enablement project created by the Center of Excellence - Enablement Team at Dynatrace.
1
+
!!! example "Support Policy - experiment, share feedback, and help shape the future"
2
+
This repository is part of an enablement project created by the Center of Excellence at Dynatrace. Our mission is to empower you to explore and adopt these resources to accelerate innovation.
3
+
Support is community-driven and provided exclusively via [GitHub Issues](https://github.com/dynatrace-wwse/codespaces-framework/issues).
3
4
4
-
**Support is provided via GitHub issues only**. The materials provided in this repository are offered "as-is" without any warranties, express or implied. Use them at your own risk.
5
+
We will make every effort to assist and address reported problems, but please note:
6
+
7
+
- The materials are provided “as-is”, without any warranties or guarantees.
8
+
- Use of this technology is at your own discretion and risk.
9
+
10
+
We encourage you to experiment, [share feedback](https://forms.office.com/r/QaCx6VAJe8), and help shape the future. Start building today!
Copy file name to clipboardExpand all lines: docs/snippets/dt-enablement.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
??? example "[](https://dynatrace-wwse.github.io/codespaces-framework)"
1
+
??? example "[](https://dynatrace-wwse.github.io/codespaces-framework)"
2
2
This Codespace leverages the Dynatrace Enablement Framework, providing a robust and flexible development environment. Key features include:
3
3
4
4
- Seamless operation within GitHub Codespaces, as a remote container, or locally via Docker.
0 commit comments