File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed
Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1515 "pattern" : " \\ bNow listening on:\\ s+(https?://\\ S+)"
1616 },
1717 "env" : {
18- "ASPNETCORE_ENVIRONMENT" : " Development"
18+ "ASPNETCORE_ENVIRONMENT" : " Development" ,
19+ "ASPNETCORE_URLS" : " https://localhost:7179;http://localhost:5221"
1920 }
2021 }
2122 ]
Original file line number Diff line number Diff line change 341341 ? "DISABLED"
342342 : "ENABLED" ) ;
343343
344+ // Start the application
344345app . Run ( ) ;
345346
346347// =============================================================================
Original file line number Diff line number Diff line change @@ -949,7 +949,7 @@ <h2>Quick Reference - CLI One-Liner</h2>
949949 // Fetch and display build info
950950 async function fetchBuildInfo ( ) {
951951 try {
952- const response = await fetch ( '/api/config ' ) ;
952+ const response = await fetch ( '/api/health/build ' ) ;
953953 if ( response . ok ) {
954954 const data = await response . json ( ) ;
955955 if ( data . buildTimestamp ) {
Original file line number Diff line number Diff line change @@ -1634,7 +1634,7 @@ <h2>🔗 Additional Resources</h2>
16341634 // Fetch and display build info
16351635 async function fetchBuildInfo ( ) {
16361636 try {
1637- const response = await fetch ( '/api/config ' ) ;
1637+ const response = await fetch ( '/api/health/build ' ) ;
16381638 if ( response . ok ) {
16391639 const data = await response . json ( ) ;
16401640 if ( data . buildTimestamp ) {
Original file line number Diff line number Diff line change @@ -1872,7 +1872,7 @@ <h3>What It Tests</h3>
18721872 // Fetch and display build info
18731873 async function fetchBuildInfo ( ) {
18741874 try {
1875- const response = await fetch ( '/api/config ' ) ;
1875+ const response = await fetch ( '/api/health/build ' ) ;
18761876 if ( response . ok ) {
18771877 const data = await response . json ( ) ;
18781878 if ( data . buildTimestamp ) {
You can’t perform that action at this time.
0 commit comments